img {
    width: 100%;
}

a {
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

/*/ --- navbar starts --- /*/
.navbar {
    position: fixed;
    width: 100%;
    padding: 10px 6%;
    z-index: 99;
}
.navbar .navbar-toggler img {
    width: 40px;
}
.navbar .nav-link {
    font-family: "Manrope", sans-serif;
    color: #fff;
    font-weight: 300;
}
.navbar .navbar-brand {
    width: 180px;
    transition: 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    color: #828E9D;
    font-size: 18px;
}
.navbar .navbar-nav {
    margin: auto;
}
.navbar-fixed-top.scrolled-inner {
    background-color: #000;
}
.navbar-fixed-top-inner.scrolled-inner {
    background-color: #fff;
}
.navbar-fixed-top.scrolled-inner .navbar-brand {
    width: 150px;
}
/*/ --- navbar ends --- /*/

/*/ --- slider starts --- /*/
.slider {
    background-color: #070C14;
    height: 100vh;
}
.slider .custom-container {
    padding: 0px 6%;
}
.slider .content h1 {
    font-family: "Poppins", serif;
    color: #F2F9FE;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
}
.slider .content p {
    color: #828E9D;
    font-family: "Manrope", serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}
.slider .content a {
    background-color: #642696;
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    padding: 16px 27px;
    border-radius: 11px;
    display: block;
    width: fit-content;
    margin: 20px auto 0px;
}
.slider .content a img {
    width: 10px;
}
.slider .content {
    position: absolute;
    top: 34vh;
    text-align: center;
    left: 0px;
    right: 0px;
}
.slider .image .anim-img-two {
    position: absolute;
    left: -160px;
    right: 0px;
    width: 310px;
    top: 160px;
    z-index: 7;
    margin: auto;
    animation: updowntwo 4.5s infinite alternate ease-in-out;
}
.slider .image .anim-img-one {
    position: absolute;
    right: -160px;
    left: 0px;
    width: 310px;
    top: 130px;
    z-index: 8;
    margin: auto;
    animation: updownone 4.5s infinite alternate ease-in-out;
}
@keyframes updownone {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}
@keyframes updowntwo {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.slider .image .banner-highlights .h-points {
    display: flex;
}
.slider .image .banner-highlights .h-points img {
    width: 46px;
    height: 46px;
    background-color: #1b0030a3;
    border: 2px solid #7035A1;
    border-radius: 10px;
    padding: 4px;
    margin-right: 10px;
}
.slider .image .banner-highlights .h-points p {
    font-family: "Inter", serif;
    color: #fff;
    font-size: 12px;
    background-color: #1b0030a3;
    border: 2px solid #7035A1;
    border-radius: 10px;
    font-weight: 300;
    padding: 12px 14px;
}
.slider .image .banner-highlights .h-one {
    position: absolute;
    top: 34vh;
    left: 50px;
    z-index: 9;
    width: fit-content;
    animation: leftrightone 4.5s infinite alternate ease-in-out;
}
.slider .image .banner-highlights .h-two {
    position: absolute;
    top: 15vh;
    left: 0px;
    right: 0px;
    z-index: 9;
    margin: auto;
    width: fit-content;
    animation: leftrighttwo 4.5s infinite alternate ease-in-out;
}
.slider .image .banner-highlights .h-three {
    position: absolute;
    top: 68vh;
    left: 225px;
    z-index: 9;
    width: fit-content;
    animation: leftrightthree 3.5s infinite alternate ease-in-out;
}
.slider .image .banner-highlights .h-four {
    position: absolute;
    top: 52vh;
    right: 31px;
    z-index: 9;
    width: fit-content;
    animation: leftrightfour 3.5s infinite alternate ease-in-out;
}
.slider .image .banner-highlights .h-five {
    position: absolute;
    top: 77vh;
    left: 230px;
    right: 0px;
    z-index: 9;
    margin: auto;
    width: fit-content;
    animation: leftrightfive 4.5s infinite alternate ease-in-out;
}
@keyframes leftrightone {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes leftrighttwo {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes leftrightthree {
  0% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(40px);
  }
}
@keyframes leftrightfour {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes leftrightfive {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(50px);
  }
}
/*/ --- slider ends --- /*/

/*/ --- intro video starts --- /*/
.home-intro-video {
    position: relative;
    background-color: #270d3e;
}
.home-intro-video .content {
    width: 54%;
    position: absolute;
    top: 27vh;
    right: 8vh;
}
.home-intro-video .content h2 {
    color: #F2F9FE;
    font-family: "Poppins", serif;
    font-size: 60px;
    font-weight: 400;
    text-align: center;
}
.home-intro-video video {
    width: 100%;
}
.home-intro-video .intro-video-mobile {
    display: none;
}
.home-intro-video .head {
    padding: 50px 0px 30px;
}
.home-intro-video .head h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    width: 70%;
    margin: 0px auto;
}
.home-intro-video .head h2 span {
    color: #fff;
}
/*/ --- intro video ends --- /*/

/*/ --- application starts --- /*/
.home-applications {
    background-image: url('../jpg/application-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-applications .custom-container {
    padding: 50px 3%;
}
.home-applications .head h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #000;
    width: 60%;
    margin: 0px auto 30px;
}
.home-applications .head h2 span {
    color: #642696;
}
.home-applications .head p {
    font-family: "Manrope", serif;
    color: #828E9D;
    text-align: center;
    width: 60%;
    margin: 0px auto 30px;
}
.home-applications .side-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 .7961918735236395px 2.3885756205709185px -.625px #0000000d, 0 2.414506143104518px 7.2435184293135535px -1.25px #0000000d, 0 6.382653521484461px 19.147960564453385px -1.875px #0000000d, 0 20px 60px -2.5px #0000000d;
}
.home-applications .side-box h4 {
    font-family: "Inter", serif;
    color: #000;
    font-weight: 500;
    font-size: 20px;
}
.home-applications .side-box img {
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
}
.home-applications .center-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 .7961918735236395px 2.3885756205709185px -.625px #0000000d, 0 2.414506143104518px 7.2435184293135535px -1.25px #0000000d, 0 6.382653521484461px 19.147960564453385px -1.875px #0000000d, 0 20px 60px -2.5px #0000000d;
}
.home-applications .center-box h4 {
    font-family: "Inter", serif;
    color: #000;
    font-weight: 500;
    font-size: 20px;
}
.home-applications .center-box img {
    border-radius: 20px;
    height: 250px;
    object-fit: cover;
}
.logo-slider-section .logo-slider img {
    filter: grayscale(1);
    height: 70px;
    object-fit: contain;
}
.logo-slider-section .logo-slider h2 {
    font-family: "Poppins", serif;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    color: #000;
    width: 100%;
    margin: 20px auto 40px;
}
.logo-slider-section .logo-slider {
    padding: 50px 20px 70px;
}
.logo-slider-section .logo-slider h2 span {
    color: #642696;
}
/*/ --- application ends --- /*/


/*/ --- industries starts --- /*/
.home-industries {
    background-color: #120f20;
}
.home-industries .custom-container {
    padding: 50px 3%;
}
.home-industries .head {
    backdrop-filter: blur(5px);
    background: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgb(67, 24, 84) 100%);
    border-radius: 100px;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 30px;
}
.home-industries .industries-box {
    border:2px solid #642c96;
    background-color: #141126;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 23px;
}
.home-industries .industries-box img {
    height: 250px;
    object-fit: contain;
}
.home-industries .industries-box h4 {
    font-family: "Poppins", serif;
    color: #fff;
    text-align: center;
}
.home-industries .industries-box p {
    font-family: "Manrope", serif;
    color: #828E9D;
    text-align: center;
}
.home-industries .head-title h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    width: 60%;
    margin: 0px auto 20px;
}
.home-industries .head-title h2 span {
    color: #fff;
}
.home-industries .head-title p {
    font-family: "Manrope", serif;
    color: #828E9D;
    text-align: center;
    width: 60%;
    margin: 0px auto 20px;
}
/*/ --- industries ends --- /*/


/*/ --- counter starts --- /*/
.home-counter {
    background-color: #f4f6fb;
}
.home-counter .custom-container {
    padding: 50px 12%;
}
.home-counter .head h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #000;
    width: 60%;
    margin: 0px auto 30px;
}
.home-counter .head h2 span {
    color: #642696;
}
.home-counter .head p {
    font-family: "Manrope", serif;
    color: #828E9D;
    text-align: center;
    width: 60%;
    margin: 0px auto 30px;
}
.home-counter .counter-box {
    background-image: url('../avif/counter-bg.avif');
    background-position: top;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
}
.home-counter .counter-box h4 {
    font-family: "Poppins", serif;
    text-align: center;
    font-size: 70px;
}
.home-counter .counter-box p {
    font-family: "Manrope", serif;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
/*/ --- counter ends --- /*/

/*/ --- parameters starts --- /*/
.home-parameters {
    background-color: #f4f6fb;
    min-height: 850px;
}
.home-parameters .custom-container {
    padding: 50px 4%;
}
.home-parameters .parameter-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    min-height: 350px;
    margin-bottom: 20px;
}
.home-parameters .parameter-box img{
    height: 125px;
    width: 125px;
    margin: 0px auto 20px;
    border-radius: 200px;
    box-shadow: rgba(109, 19, 207, 0.25) 0px 8px 50px 0px;
    object-fit: cover;
    display: block;
}
.home-parameters .parameter-box h4 {
    font-family: "Poppins", serif;
    color: #000;
    font-size: 26px;
    text-align: center;
}
.home-parameters .parameter-box p {
    font-family: "Manrope", serif;
    color: rgb(72, 94, 121);
    font-size: 16px;
    text-align: center;
}
.home-parameters .head h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #000;
    width: 60%;
    margin: 0px auto 30px;
}
.home-parameters .head h2 span {
    color: #642696;
}
.home-parameters .parameter-icons {
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}
.home-parameters .parameter-icons .parameter-icon-box {
    display: flex;
    padding: 15px 20px;
    border-radius: 20px;
    background-color: #fff;
    margin: 0px 10px 20px;
}
.home-parameters .parameter-icons .parameter-icon-box img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.home-parameters .parameter-icons .parameter-icon-box p {
    font-family: "Manrope", serif;
    color: rgb(72, 94, 121);
    margin-bottom: 0px;
    font-size: 18px;
}
.home-parameters .building-blocks {
    position: relative;
}
.home-parameters .building-blocks .block-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: rgb(109 19 207 / 16%) 0px 0px 12px 0px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.home-parameters .building-blocks .block-box:hover {
    transform: scale(1.1);
    background-color: rgb(238 227 251);
    border: 1px solid #e5ccfb;
}
.home-parameters .building-blocks .block-box img {
    width: 40px;
    margin: 10px auto;
    display: block;
}
.home-parameters .building-blocks .block-box h4 {
    font-family: "Poppins", serif;
    color: #000;
    font-size: 18px;
    text-align: center;
    width: 100%;
    font-weight: 400;
    margin-bottom: 0px;
}
.home-parameters .building-blocks .block-box p {
    font-family: "Manrope", serif;
    color: rgb(72, 94, 121);
    margin-bottom: 0px;
    font-size: 13.5px;
    text-align: center;
}
.home-parameters .building-blocks .block-box-one {
    width: 160px;
    height: 190px;
    margin: 0px auto 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    position: absolute;
    left: 0px;
    right: 0px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-two {
    position: absolute;
    width: 195px;
    height: 180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    left: 0px;
    right: 385px;
    margin: auto;
    top: 80px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-three {
    width: 180px;
    height: 140px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    position: absolute;
    left: 0px;
    right: -368px;
    margin: auto;
    top: 50px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-four {
    position: absolute;
    width: 260px;
    left: 0px;
    right: 450px;
    margin: auto;
    top: 275px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-five {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    width: 250px;
    height: 180px;
    left: 0px;
    right: -90px;
    margin: auto;
    top: 205px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-six {
    position: absolute;
    left: 0px;
    right: -595px;
    margin: auto;
    width: 225px;
    height: 175px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    top: 205px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-seven {
    position: absolute;
    left: 0px;
    right: -30px;
    margin: auto;
    width: 190px;
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    top: 400px;
    justify-content: center;
}
.home-parameters .building-blocks .block-box-eight {
    position: absolute;
    width: 175px;
    height: 165px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    left: 0px;
    right: -425px;
    top: 400px;
    justify-content: center;
}

/*/ - animation starts - /*/
/* .animate-on-scroll-one {
  opacity: 0;
  transform: translate(-50px, -50px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll-one.animate {
  opacity: 1;
  transform: translate(0, 0);
} */

/*/ - animation ends - /*/

/*/ --- parameters ends --- /*/

/*/ --- process flow starts --- /*/
.home-process-flow {
    background-color: #250c3d;
    padding: 50px 0px 30px;
}
.home-process-flow video {
    width: 100%;
    height: 90vh;
}
.home-process-flow h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    width: 60%;
    margin: 0px auto 30px;
}
.home-process-flow h2 span {
    color: #fff;
}
.home-process-flow p {
    font-family: "Manrope", serif;
    color: #828E9D;
    text-align: center;
    width: 60%;
    margin: 0px auto 30px;
}
/*/ --- process flow ends --- /*/

/*/ --- case studies starts --- /*/
.home-case-studies {
    background-color: #141126;
}
.home-case-studies .case-studies-box {
    margin-bottom: 60px;
}
.home-case-studies .custom-container {
    padding: 70px 4% 40px;
}
.home-case-studies .case-studies-box img {
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}
.home-case-studies .case-studies-box h4 {
    color: rgb(201, 201, 201);
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: 20px;
    margin: 20px 0px;
}
.home-case-studies .case-studies-box .arrow-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.home-case-studies .case-studies-largebox h4 {
    width: 60%;
}
/*/ --- case studies ends --- /*/

/*/ --- investors starts --- /*/
.home-investors {
    background-color: #e4d3f8;
}
.home-investors .custom-container {
    padding: 50px 4%;
}
.home-investors .investor-logo img {
    height: 120px;
    object-fit: contain;
}
.home-investors h2 {
    font-family: "Poppins", serif;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #000;
    width: 60%;
    margin: 0px auto 40px;
}
.home-investors h2 span {
    color: #642696;
}
/*/ --- investors ends --- /*/

/*/ --- footer css starts --- /*/
footer {
    background-color: rgb(20, 22, 30);
}
footer .custom-container {
    padding: 50px 4%;
}
footer .footer-row {
    display: flex;
}
footer .footer-row .logo {
    width: 40%;
    display: flex;
}
footer .footer-row .quick-links {
    width: 20%;
}
footer .footer-row .logo img {
    width: 170px;
    display: block;
    margin: auto;
}
footer .footer-row .quick-links h4 {
    font-family: "Poppins", serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}
footer .footer-row .quick-links ul {
    padding-left: 0px;
}
footer .footer-row .quick-links li {
    list-style: none;
}
footer .footer-row .quick-links li a {
    font-family: "Inter", serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}
footer .footer-row .quick-links li {
    font-family: "Inter", serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 2.4;
}
.copyright {
    background-color: rgb(7, 12, 20);
}
.copyright {
    padding: 30px 5%;
}
.copyright p {
    font-family: "Manrope", serif;
    font-weight: 300;
    color: #828f9d;
    font-size: 14px;
    margin-bottom: 0px;
}
.copyright p a {
    color: #828f9d;
}
.copyright li a i {
    color: #828f9d;
}
.copyright li a {
    color: #828f9d;
}
.copyright li {
    list-style: none;
    padding-left: 20px;
}
.copyright ul {
    display: flex;
    margin-bottom: 0px;
    padding-left: 0px;
    justify-content: flex-end;
}
/*/ --- footer css ends --- /*/

/*/ --- about page starts --- /*/
.about-inner .custom-container{
    padding: 200px 4% 40px;
}
.about-inner .about-head h6 {
    color: #4a3191;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.about-inner .about-head h4 {
    font-family: "Poppins", serif;
    color: #1d1e25;
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 20px;
}
.about-inner .content p {
    font-family: "Manrope", serif;
    color: #1d1e25;
}
.about-inner .contact-btn img {
    width: 90px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}
.about-inner .contact-btn main {
  width: 130px;
  height: 130px;
  margin: 80px auto;
  font-size: 11px;
  position: relative;
}

.about-inner .contact-btn main svg {
  overflow: visible;
  -webkit-animation: circular-text-rotate 5s linear running infinite;
          animation: circular-text-rotate 5s linear running infinite;
}

.about-inner .contact-btn main svg:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.about-inner .contact-btn main path {
  fill: none;
}

.about-inner .contact-btn main text {
  fill: #000;
}

@-webkit-keyframes circular-text-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes circular-text-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.swiper {
  position: relative;
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-awards .custom-container {
    padding: 50px 4%;
}
.about-awards .content h4 {
    font-family: "Poppins", serif;
    color: #1d1e25;
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 20px;
}
.about-awards .content p {
    font-family: "Manrope", serif;
    color: #1d1e25;
}

.photo-gallery {
    position: relative;
}
.photo-gallery img {
    height: 400px;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.2s ease-in-out;
    overflow: hidden;
    object-position: center;
}
.photo-gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.2);
    position: relative;
    z-index: 8;
}

.news-articles .custom-container {
    padding: 70px 4%;
}
.news-articles .article-card {
    position: relative;
    margin-right: 20px;
}
.news-articles .article-card img {
    height: 250px;
    object-fit: contain;
}
.news-articles .article-card h4 {
    font-family: "Poppins", serif;
    color: #1d1e25;
    font-weight: 500;
    font-size: 22px;
    margin: 15px 0px 10px;
}
.news-articles .article-card a {
    font-family: "Poppins", serif;
    color: #4a3191;
    font-weight: 600;
    text-decoration: underline;
}
.news-articles .article-card p {
    font-family: "Manrope", serif;
    color: #1d1e25;
    font-size: 15px;
}
.news-articles .article-card .news-logo {
    width: 80px;
    height: 70px;
    background-color: #fff;
    padding: 5px;
    object-fit: contain;
    position: absolute;
    top: 180px;
    right: 10px;
}
.news-articles .article-card .content {
    padding: 15px;
}

.section-gallery div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.section-gallery {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  padding: 30px 0px;
}
.section-gallery .wide {
  grid-column: span 2;
}
.section-gallery .tall {
  grid-row: span 2;
}
.about-page-gallery .custom-container {
    padding: 30px 4% 50px;
}
/*/ --- about page ends --- /*/


