/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}

a {
  color: #6c0ab3;
  text-decoration: none;
}

a:hover {
  color: #ff4141;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #6c0ab3;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1560px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #6c0ab3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top svg path {
  fill: white;
}
.back-to-top:hover {
  background: #ff4141;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 76px;
  position: absolute;
  width: 100%;
}
#header.fixed-top {
  height: 76px;
  position: fixed;
  background: #6c0ab3;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0px;
}
#header.fixed-top .colored_logo {
  display: block;
}
#header.fixed-top .mobile-nav-toggle svg {
  margin-top: 0;
}
#header.fixed-top .mobile-nav-toggle svg path {
  fill: #6C0AB3;
}
@media (resolution: 1.5dppx) {
  #header.fixed-top {
    height: 70px;
  }
}
#header .logo {
  margin: 0;
  padding: 0;
}
#header .logo img {
  max-height: 55px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation
  */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff1515;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar > ul > li > a.nav-link {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 700;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 600;
  color: #D0AFFF;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: clamp(10px, 0.625vw, 12px);
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: clamp(10px, 0.625vw, 12px);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #6c0ab3;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
  * Mobile Navigation
  */
.mobile-nav-toggle {
  color: #fff;
  font-size: clamp(18px, 1.4583vw, 28px);
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle svg {
  margin-top: 10px;
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.mobile-nav-toggle svg path {
  fill: white;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: clamp(13px, 0.78125vw, 15px);
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #6c0ab3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: clamp(10px, 0.625vw, 12px);
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #6c0ab3;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow-x: hidden;
}
#hero::before {
  content: "";
  background: rgb(108, 10, 179);
  background: linear-gradient(142deg, rgb(108, 10, 179) 0%, rgb(100, 17, 179) 21%, rgb(71, 42, 180) 59%, rgb(58, 10, 179) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#hero::after {
  content: "";
  background-image: url("../img/slider_circle_bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 60%;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
}
#hero .heroBanner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#hero .heroBanner::before {
  content: "";
  background-image: url("../img/dots.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 156px;
  width: 480px;
  position: absolute;
  left: 10vw;
  bottom: 100px;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 5s;
  z-index: -1;
}
#hero .heroBanner::after {
  content: "";
  background-image: url("../img/dots.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 156px;
  width: 480px;
  position: absolute;
  right: -10vw;
  top: 100px;
  z-index: -1;
}
@-webkit-keyframes run {
  0% {
    left: 10vw;
  }
  50% {
    left: 12vw;
  }
  100% {
    left: 10vw;
  }
}
#hero .slider_wrap {
  position: relative;
  z-index: 3;
}
#hero .slider_wrap .small_title {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 500;
  color: white;
}
#hero .slider_wrap .title {
  font-size: clamp(22px, 1.9791vw, 44px);
  font-weight: 900;
  color: white;
}
#hero .slider_wrap .title2 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 500;
  color: white;
  text-align:justify;
}
@media (resolution: 1.25dppx) {
  #hero .slider_wrap img {
    width: 25rem !important;
  }
  #hero .slider_wrap .slider_img {
    text-align: center !important;
  }
}
@media (resolution: 1.5dppx) {
  #hero .slider_wrap img {
    width: 25rem !important;
  }
  #hero .slider_wrap .slider_img {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Vision Section
--------------------------------------------------------------*/
.vision {
  background-color: #fff;
  padding: 60px 0;
}
.vision h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
  color: #2B2A2A;
}
.vision h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 600;
  color: #2B2A2A;
}
.vision p {
  font-size: clamp(16px, 1.145vw, 22px);
  font-weight: 500;
  color: #2B2A2A;
  text-align: justify;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products {
  position: relative;
  background-color: #f9f9f9;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .products {
    padding-top: 60px;
  }
}
.products::before {
  position: absolute;
  left: -32px;
  content: "";
  bottom: 0;
  background-image: url(../img/watermark.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  height: 57%;
  width: 100%;
}
.products .rightPanel {
  background-color: #6C0AB3;
  height: 100%;
  width: 34vw;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .products .rightPanel {
    display: none;
  }
}
.products .rightPanel.bg2 {
  background-color: orange !important;
}
.products .prod-wrapper {
  height: 100%;
  width: auto;
  right: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  display: flex;
  align-items: center;
}
.products .app_view_wrap {
  transform: translateX(-18vw);
}
@media (min-width: 1700px) {
  .products .app_view_wrap {
    transform: translateX(-21vw);
  }
}
.products .app_view_wrap .back-mobile {
  position: absolute;
  top: 0;
  width: 15vw;
  height: auto;
  transform: translate(7vw, -8vw);
}
@media (resolution: 1.5dppx) {
  .products .app_view_wrap .back-mobile {
    transform: translate(7vw, -6vw);
  }
}
.products .app_view_wrap .front-mobile {
  position: absolute;
  bottom: 100px;
  width: 15vw;
  height: auto;
  transform: translate(1vw, 13vw);
}
@media (resolution: 1.5dppx) {
  .products .app_view_wrap .front-mobile {
    transform: translate(1vw, 15vw);
  }
}
.products .app_view_wrap .smallCircle2 {
  width: 5vw;
  height: 5vw;
  border-radius: 100%;
  background-color: #9232D7;
  position: absolute;
  right: -3vw;
  top: -5vw;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run3;
  -webkit-animation-duration: 5s;
}
@-webkit-keyframes run3 {
  0% {
    top: -5vw;
    right: -3vw;
  }
  50% {
    right: -2vw;
  }
  100% {
    top: -5vw;
    right: -3vw;
  }
}
.products .circle_wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  outline: solid 3px #9232D7;
  outline-offset: 12px;
  background-color: #9232D7;
}
@media (resolution: 1.5dppx) {
  .products .circle_wrap {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1199px) {
  .products .circle_wrap {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 991px) {
  .products .circle_wrap {
    display: none;
  }
}
.products .content_sec {
  position: relative;
  padding: 8vw 0;
}
@media (resolution: 1.5dppx) {
  .products .content_sec {
    padding: 5vw 0;
  }
}
@media (max-width: 991px) {
  .products .content_sec {
    height: 100%;
    padding-bottom: 50px;
  }
}
.products .content_sec .swiper-slide {
  padding-left: 10px;
}
.products .content_sec .swiper-wrapper {
  padding-bottom: 50px;
}
.products .content_sec .swiper-pagination {
  text-align: start !important;
}
.products .content_sec .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}
.products .content_sec .swiper-pagination-bullet-active {
  background-color: #6C0AB3;
}
.products .content_sec .prod_logo {
  width: 200px;
  height: auto;
}
.products .content_sec .prod2_logo {
  width: 225px;
  height: auto;
}
.products .content_sec h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
  color: #2B2A2A;
  padding-left: 0 !important;
}
.products .content_sec h2 span {
  color: #6C0AB3;
}
.products .content_sec h3 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 500;
  color: #2B2A2A;
}
.products .content_sec .all_products {
  position: relative;
}
.products .content_sec .all_products .icon_wrap {
  width: 55px;
  height: 55px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(51, 51, 51, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-in-out;
  flex-shrink: 0;
}
.products .content_sec .all_products p.producttxt {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 400;
  color: #2B2A2A;
  padding-left: 10px;
  margin-bottom: 0;
  line-height: 25px;
}
.products .content_sec .all_products .prod_item:hover .icon_wrap {
  background-color: #6C0AB3;
}
.products .content_sec .all_products .prod_item:hover .icon_wrap img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(68%) saturate(288%) hue-rotate(189deg) brightness(117%) contrast(100%);
}
.products .content_sec .all_products .prod2_item img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(1329%) hue-rotate(346deg) brightness(96%) contrast(96%);
}
.products .content_sec .all_products .prod2_item:hover .icon_wrap {
  background-color: #f15924;
}
.products .content_sec .all_products .prod2_item:hover .icon_wrap img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(68%) saturate(288%) hue-rotate(189deg) brightness(117%) contrast(100%);
}
.products .content_sec .all_products .prod3_item img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(87%) saturate(4578%) hue-rotate(351deg) brightness(109%) contrast(126%);
}
.products .content_sec .all_products .prod3_item:hover .icon_wrap {
  background-color: #fe0001;
}
.products .content_sec .all_products .prod3_item:hover .icon_wrap img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(68%) saturate(288%) hue-rotate(189deg) brightness(117%) contrast(100%);
}

/*--------------------------------------------------------------
# Future Innovation Section
--------------------------------------------------------------*/
.future_innovation {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.future_innovation .bg_cicrcle {
  position: absolute;
  left: -10%;
  bottom: -18%;
  -webkit-animation: slide 8s infinite;
  animation: slide 8s infinite;
}
.future_innovation .plus_img {
  position: absolute;
  left: 21vw;
  top: 7vw;
  -webkit-animation: slide 5s infinite;
  animation: slide 5s infinite;
}
.future_innovation .plus_img2 {
  position: absolute;
  right: 25vw;
  top: 10vw;
}
.future_innovation .plus_img3 {
  position: absolute;
  right: 14vw;
  bottom: 2vw;
}
.future_innovation .plus_img4 {
  position: absolute;
  right: 42vw;
  bottom: 19vw;
  -webkit-animation: slide 5s infinite;
  animation: slide 5s infinite;
}
.future_innovation .plus_img5 {
  position: absolute;
  left: 17vw;
  bottom: 5vw;
}
@keyframes zoom {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
.future_innovation .traingle {
  position: absolute;
  left: 29vw;
  bottom: 20vw;
  -webkit-animation: slide 3s infinite;
  animation: slide 3s infinite;
}
.future_innovation .traingle2 {
  position: absolute;
  left: 51vw;
  top: 3vw;
  transform: rotate(180deg);
  -webkit-animation: slide 3s infinite;
  animation: slide 3s infinite;
}
.future_innovation .traingle3 {
  position: absolute;
  left: 53vw;
  bottom: 3vw;
}
.future_innovation .bg_cicrcle2 {
  position: absolute;
  right: -7%;
  top: 0%;
  -webkit-animation: slide 8s infinite;
  animation: slide 8s infinite;
}
@keyframes slide {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10%, 10%);
  }
  100% {
    transform: translate(0);
  }
}
.future_innovation h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
  color: #2B2A2A;
}
.future_innovation h3 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 600;
  color: #2B2A2A;
  padding-top: 13px;
}
.future_innovation .fur_innovation_list {
  margin: 5vw 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.future_innovation .fur_innovation_list li {
  background-color: #ffffff;
  padding: 0;
  width: 200px;
  height: 200px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 1s ease-in-out;
  border-radius: 10px;
  border: solid 0px #e2c7f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.44);
}
@media (resolution: 1.5dppx) {
  .future_innovation .fur_innovation_list li {
    width: 140px;
    height: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .future_innovation .fur_innovation_list li {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .future_innovation .fur_innovation_list li {
    width: 160px;
    height: 260px;
  }
}
@media (max-width: 385px) {
  .future_innovation .fur_innovation_list li {
    width: 120px;
    height: 220px;
  }
}
.future_innovation .fur_innovation_list li .icon_wrap2 {
  width: 80px;
  height: auto;
}
.future_innovation .fur_innovation_list li p {
  font-size: clamp(16px, 1.145vw, 20px);
  font-weight: 700;
  color: #4a078e;
  margin-bottom: 0;
  height: 60px;
  margin-top: 20px;
}
.future_innovation .fur_innovation_list li .circle_icon_wrap {
  width: 75px;
  height: 75px;
  border-radius: 200px;
  background-color: #f17712;
  display: flex;
  align-items: center;
  justify-content: center;
}
.future_innovation .fur_innovation_list li .circle_icon_wrap img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(100deg) brightness(101%) contrast(104%);
  width: 45px;
  height: auto;
}

/*--------------------------------------------------------------
#Technologies Section
--------------------------------------------------------------*/
.technologies {
  position: relative;
  padding: 100px 0;
  background-color: #f9f9f9;
}
.technologies h2 {
  font-size: clamp(28px, 2.6041vw, 50px);
  font-weight: 800;
  color: #2B2A2A;
}
.technologies h3 {
  font-size: clamp(18px, 1.3541vw, 26px);
  font-weight: 600;
  color: #2B2A2A;
}

/*--------------------------------------------------------------
#Footer Section
--------------------------------------------------------------*/
footer {
  position: relative;
  background-color: #140322;
  padding: 50px 0 0;
  color: #AA8FBF;
}
footer p {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 500;
}
footer h3 {
  font-size: clamp(16px, 1.145vw, 22px);
  font-weight: 600;
  color: white;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  footer h3 {
    margin-bottom: 20px;
  }
}
footer ul li {
  margin-bottom: 15px;
}
footer ul li a {
  color: #AA8FBF;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 500;
}
footer ul.address {
  margin: 0;
  padding: 0;
}
footer ul.address li {
  display: flex;
  align-items: start;
}
footer .copyRight_wrp {
  background-color: #000000;
  padding: 20px 0;
}
footer .copyRight_wrp .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .copyRight_wrp .container {
    display: block;
    text-align: center;
  }
}
footer .copyRight_wrp p {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #949494;
  font-weight: 400;
  margin: 0;
}
footer .copyRight_wrp ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .copyRight_wrp ul li {
  display: flex;
  align-items: center;
  padding: 0 5px;
  margin-bottom: 0;
}
footer .copyRight_wrp ul li a {
  color: #949494;
  display: inline-block;
}
footer .copyRight_wrp ul li a:hover {
  color: #fff;
}

html {
  scrollbar-color: blue green;
  scrollbar-width: thin;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0px 0px grey;
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #6c0ab3;
  border-radius: 10px;
  height: 100px;
}