* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* 
html {
	overflow-x: hidden;
} */

html,
body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.no-padding {
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.custom-container {
  padding: 0px 80px;
}

/*=====================================================
/*default-btn
======================================================*/

.default-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  padding: 15px 25px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  border-radius: 30px !important;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.default-btn:hover::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.default-btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.default-btn i {
  position: relative;
  top: 4px;
  padding-left: 16px;
  transform: rotate(-400deg);
  transition: transform 0.5s;
}

.default-btn:hover .default-btn i {
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}

/*=============black-buttn===========*/
.default-btn.blck {
  background-color: #8b5cf6;
  color: #ffffff;
}

.default-btn.blck::before {
  position: absolute;
  content: "";
  background-color: #1d2f6f;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: -1;
}

.default-btn.blck::after {
  position: absolute;
  content: "";
  background-color: #1d2f6f;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: -1;
  transition: transform 0.5s ease, border-radius 0.3s ease;
}

.default-btn.blck:hover {
  color: #ffffff;
  border-radius: 30px !important;
  /* button itself becomes rounded */
}

.default-btn.blck:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.default-btn.blck:hover::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  transform: scaleY(1);
  border-radius: 30px !important;
  /* overlay matches rounded corners */
}

.default-btn.blck:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.default-btn.blck:hover::after {
  transform: scaleY(1);
  border-radius: 30px;
  /* overlay matches rounded corners */
}

.default-btn.blck span i {
  transition: transform 0.3s ease;
  /* smooth animation */
  display: inline-block;
  /* required for transform */
}

.default-btn.blck:hover span i {
  transform: translate(5px, -5px);
  /* move right + up */
}

/*=============black-buttn===========*/

/*=====================================================
/*default-btn
======================================================*/

/*=============header-top-logo-section========================= */

.main-nav {
  margin: 0px 0px;
  padding: 0px;
  width: 100%;
  height: auto;
  background: transparent;
  transition: all 0.1s ease 0s;
  z-index: 999;
  position: absolute;
}

.header-section-inner {
  background: #fff;
  border-radius: 0px 0px 40px 40px;
  box-shadow: 0px 0px 30.4px 0px #00000063;
  margin: 0px;
  padding: 20px 40px;
  height: 100%;
}

.header-section.scroll {
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.logo {
  width: 160px;
  height: auto;
  margin: 0px;
  padding: 0px;
  position: relative;
}

.logo img {
  width: 100%;
}

.header-section.scroll .logo img {
  width: 60%;
}

.main-nav.scroll .logo {
  width: 148px;
  margin: 13px 0px;
}

.main-nav.scroll .rightlink {
  margin-top: 14px;
}

.stellarnav.mobile.right > ul {
  z-index: 99;
  background: #f0d04d;
}

.stellarnav {
  position: relative;
  width: 100%;
  line-height: normal;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.stellarnav ul {
  margin: 0px 0px;
  padding: 0px;
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0px;
}

.stellarnav > ul > li > a {
  font-weight: 500;

  font-size: 16px;

  line-height: 16px;
  letter-spacing: 0%;

  color: #434d56;
  padding: 0px 20px !important;
  border-bottom: none;
}

.stellarnav .menu-toggle span.bars span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 6px;
  background: #002e75;
  margin: 0 0 5px;
}

.stellarnav > ul > li > a:hover {
  color: #1d2f6f;
}

.stellarnav > ul > li > a.active {
  color: #1d2f6f;
}

.stellarnav.mobile ul {
  color: #1d2f6f;
  z-index: 99;
}

.main-nav-socialicon {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  text-align: right;
}

.main-nav .stellarnav ul ul {
  width: 263px;
  padding: 12px 0px;
}

.main-nav .stellarnav li li {
  margin: 0px 0px;
  width: 100% !important;
}

.main-nav .stellarnav li li a {
  font-size: 15px;
  padding: 8px 12px;
  color: #2c2c2c;
  font-weight: 400;
}

/* .stellarnav li.has-sub a {
	padding-right: 0px !important;
} */

.main-nav .stellarnav li li a:hover {
  background: #fdedf0;
  color: #ed692a;
}

.main-nav .stellarnav li li a.active {
  background: #fdedf0;
  color: #ed692a;
}

.stellarnav li.has-sub > a::after {
  content: "\f107";
  margin-left: 7px !important;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #267ec3;
  display: inline-block;
  border: none !important;
  font: normal normal normal 16px/1 FontAwesome;
}

.stellarnav.mobile.right > ul,
.stellarnav.mobile.left > ul {
  max-width: 600px;
}

.nav-butn-row {
  display: flex;
  margin: 50px 50px;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.stellarnav.mobile li a {
  border-bottom: 0px solid rgba(255, 255, 255, 0.15);
}

.stellarnav .icon-close {
  width: 25px;
  height: 25px;
}

.stellarnav .icon-close::before {
  content: "";
  display: block;
  width: 25px;
  height: 0px;
  border-bottom: solid 3px #fff;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

.stellarnav .icon-close::after {
  content: "";
  display: block;
  width: 25px;
  height: 0px;
  top: 50%;
  border-bottom: solid 3px #fff;
  position: absolute;
  transform: rotate(-45deg);
}

.stellarnav ul ul {
  top: 44px;
  width: 200px;
  position: absolute;
  z-index: 9900;
  text-align: left;
  display: none;
  background: #fff;
  left: 0px;
}

.stellarnav li li {
  display: block !important;
  width: 100% !important;
}

.stellarnav li li a {
  font-size: 16px;
}

.stellarnav li li a:hover {
  color: #ed692a;
}

.stellarnav.mobile ul {
  background: #1d2f6f;
}

.rightlink {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  height: 100%;
}

/* ================================================================== */
/* header - top */

/* ==================================================================  */

/* ================================================================== */
/* banner section */
/* ==================================================================  */

.banner-section {
  margin: 0px 0px;
  padding: 0px;
  width: 100%;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section-inner {
  max-width: 850px;
  margin: 0px auto;
  padding: 0px;
  text-align: center;
  position: absolute;
  top: 0px;
  padding: 0px 0px;
  height: 100%;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  left: 0px;
  right: 0px;
  overflow: hidden;
}

.banner-section-inner h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 74px;
  letter-spacing: 0%;
  text-align: center;
  color: #1d2f6f;
  padding: 0px;
  margin: 0px 0px 20px 0px;
  position: relative;
  z-index: 9;
}

.banner-section-inner h1 span {
  background: linear-gradient(90deg, #c15da7 0%, #3f5efb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-section-inner h6 {
  font-weight: 400;

  font-size: 24px;

  line-height: 34px;
  letter-spacing: 0px;
  text-align: center;
  color: #434d56;
  padding: 0px;
  margin: 0px 0px 60px 0px;
  position: relative;
  z-index: 9;
}

.banner-animation-section {
  position: relative;
  margin: 20px auto;
}

.banner-animation-section-outer {
  position: relative;
}

.banner-animation-section-outer img {
  width: 100%;
  height: auto;
  display: block;
  /* animation: halfRotate 3s ease-in-out infinite; */
  margin: 0px auto;
}

@keyframes halfRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}

.banner-animation-mid {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  top: 46px;
  width: 67%;
  /*-webkit-animation: movebounce-up 13s infinite; */
  /*animation: movebounce-up 13s infinite; */
}

.banner-animation-icon1 {
  position: absolute;
  left: 79px;
  bottom: 24px;
  -webkit-animation: move-to 7s infinite linear;
  animation: move-to 7s infinite linear;
}

.banner-animation-icon2 {
  position: absolute;
  left: 31px;
  top: 104px;
  -webkit-animation: movebounce-up 13s infinite;
  animation: movebounce-up 13s infinite;
}

.banner-animation-icon3 {
  position: absolute;
  right: 214px;
  top: -30px;
  -webkit-animation: jello 2s infinite;
  animation: jello 2s infinite;
}

.banner-animation-icon4 {
  position: absolute;
  right: -16px;
  bottom: 47px;
  -webkit-animation: tada 2s infinite;
  animation: tada 2s infinite;
}

.banner-animation-icon5 {
  position: absolute;
  left: 0px;
  right: -49px;
  bottom: -60px;
  /*-webkit-animation: tada 2s infinite;
	 animation: tada 2s infinite; */
  background: #fff;
  width: 40px;
  height: 48px;
  text-align: center;
  margin: 0px auto;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-animation-icon5 img {
  width: 40px;
  height: 40px;
}

/* ==================================================================*/
/* banner section */
/* ==================================================================*/

/* ==================================================================*/
/* trusted - section */
/* ==================================================================*/

.trusted-section {
  padding: 60px 0px;
  margin: 0px;
  position: relative;
  overflow: hidden;
}

.trusted-section h3 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #434d56;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

.trusted-section-slider {
  max-width: 900px;
  margin: 0px auto;
  padding: 0px;
  overflow: hidden;
}

.trusted-box {
  width: 138px;
  height: 106px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0px;
}

.trusted-box img {
  width: auto !important;
  height: auto;
  object-fit: contain;
  max-width: auto !important;
}

.trusted-section-slider .owl-nav {
  display: none;
}

.trusted-section-slider .owl-dots {
  display: none;
}

/* ==================================================================*/
/* about- section */
/* ==================================================================*/

/* ==================================================================*/
/*essential-business-section */
/* ==================================================================*/

.essential-business-section {
  margin: 0px 0px;
  padding: 60px 0px;
  position: relative;
  background-image: url(../images/about-bg.png);
  min-height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.essential-business-section-tittle {
  text-align: center;
  max-width: 1360px;
  margin: 0px auto;
}

.essential-business-section-tittle h6 {
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1d2f6f;
  background: #ffc200;
  width: fit-content;
  padding: 14px 30px;
  margin: 0px auto;
  border-radius: 30px;
}

.essential-business-section-tittle h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #1d2f6f;
  margin: 30px 0px;
  padding: 0px;
}

.essential-business-section-tittle p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  color: #434d56;
  margin: 0px auto;
  padding: 0px 0px 60px 0px;
}

.essential-business-section-body {
  max-width: 1500px;
  margin: 0px auto;
  padding: 0px;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centers all boxes horizontally */
  gap: 30px;
  /* spacing between boxes */
}

.features-cart {
  padding: 20px 10px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eff0f6;
  position: relative;
  box-shadow: 0px 4.14px 11.59px 0px #080f340a;
  width: 235px;
  height: 160px;
  margin: 0px 0px 10px 0px;
  flex: 0 0 calc(20% - 30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.features-cart:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.features-cart::before {
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 0% 50% 50% 50%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #073698;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.features-cart .features-cart-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
  width: 95%;
}

.features-cart-content-text {
  width: 155px;
  /* border: 1px solid; */
}

.features-cart-content-text h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #1d2f6f;
  width: 100%;
  margin: 30px 0px 0px 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.features-cart:hover .features-cart-content-text h4 {
  color: #fff;
  margin: 0px;
}

.features-cart-content-icon {
  height: 50px;
  background: #f4f5ff;
  width: 50px;
  border-radius: 50%;
  margin: 0px auto;
  text-align: center;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  /* border: 1px solid #f4f5ff; */
}

.features-cart:hover .features-cart-content-icon {
  background-color: #739bf045;
  color: #fff;
}

.features-cart-content-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.features-cart:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0%;
  top: 0;
  left: 0;
}

.hoverinfo {
  position: relative;
  z-index: 1;
  display: flex !important;
  justify-content: space-between !important;
  padding: 0px;
  margin: 0px;
  width: 95%;
}

.features-cart:hover .features-cart-content {
  display: none;
}

.features-cart:hover .hoverinfo {
  display: block;
  opacity: 100%;
}

.features-cart .hoverinfo {
  opacity: 0;
}

.hoverinfo .features-cart-content-text p {
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  height: 40px;
  overflow: hidden;
}

.hoverinfo .features-cart-content-icon i {
  font-size: 20px;
  color: #fff;
  transform: rotate(-400deg);
  transition: transform 0.5s;
}

/* ==================================================================*/
/*essential-business-section */
/* ==================================================================*/

/* ==================================================================*/
/*smart-solutions-section */
/* ==================================================================*/

.smart-solutions-section {
  padding: 60px 0px;
  margin: 0px;
  position: relative;
  overflow: hidden;
}

.smart-solutions-section-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  border-radius: 40px;
  overflow: hidden;
}

.smart-solutions-section-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* background-like behavior */
  z-index: -1;
  /* send image behind text */
}

.smart-solutions-text {
  text-align: center;
  color: #fff;
  max-width: 900px;
}

.smart-solutions-text h2 {
  font-weight: 700;

  font-size: 48px;

  line-height: 55px;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
  padding: 0px;
  margin: 0px 0px 30px 0px;
}

.smart-solutions-text h2 span {
  color: #ffc200;
}

.smart-solutions-text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: center;
  color: #c2c2c2;
  padding: 0px;
  margin: 0px 0px 30px 0px;
}

/* ==================================================================*/
/*smart-solutions-section */
/* ==================================================================*/

/* ==================================================================*/
/*our-services-section */
/* ==================================================================*/

.our-services-section {
  padding: 0px 0px 100px 0px;
  margin: 0px;
  position: relative;
  overflow: hidden;
}

.service-cart-3 {
  padding: 40px;
  margin-top: 30px;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
  background: #f6f6ff;
  position: relative;
  width: 100%;
  height: 340px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.service-cart-3:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.service-cart-3::before {
  content: "";
  width: 100%;
  height: 0%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  /*background: linear-gradient(30deg, #FC466B 0%, #3F5EFB 100%);*/
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.service-cart-3 .service-cart-3-icon {
  position: absolute;
  padding-top: 0px;
  width: 150px;
  height: 150px;
  right: -25px;
  top: 0px;
}

/*.service-cart-3 .service-cart-3-icon::after {*/
/*	content: '';*/
/*	width: 70px;*/
/*	height: 70px;*/
/*	border-radius: 50%;*/
/*	-webkit-transition: .5s ease-in-out;*/
/*	transition: .5s ease-in-out;*/
/*	background-color: #fff;*/
/*	position: absolute;*/
/*	left: 0;*/
/*	right: 0;*/
/*	top: 0px;*/
/*	margin: 0px auto;*/
/*	text-align: center;*/
/*	box-shadow: 0px 0px 18.48px 0px #FFFFFF inset;*/

/*}*/

.service-cart-3 h4 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #1d2f6f;
  padding: 0px;
  margin: 30px 0px 20px 0px;
  max-width: 49%;
}

/*.service-cart-3:hover h4,*/
/*.service-cart-3:hover a,*/
/*.service-cart-3:hover p {*/
/*	color: #fff;*/
/*}*/

.service-cart-3 p {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #434d56;
  padding: 0px;
  margin: 0px;
}

/*.service-cart-3:hover p,*/
/*.service-cart-3:hover a {*/
/*	color: #F5F2FF;*/
/*}*/

.service-cart-3:hover::before {
  height: 100%;
}

.service-cart-3:hover .service-cart-3-icon::after {
  background-color: rgba(255, 255, 255, 0.1);
}

/* .service-cart-3:hover .service-cart-3-icon {
	-webkit-animation: jello 2s infinite;
	animation: jello 2s infinite;
} */

.service-3 {
  position: relative;
}

.service-3 .shape .shape1 {
  position: absolute;
  left: 10%;
  bottom: 10%;
  z-index: -1;
  -webkit-animation: spin 10s infinite linear forwards;
  animation: spin 10s infinite linear forwards;
}

.service-3 .shape .shape2 {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: -1;
  -webkit-animation: left-right 3s infinite linear forwards;
  animation: left-right 3s infinite linear forwards;
}

/* ==================================================================*/
/*our-services-section */
/* ==================================================================*/

/* ==================================================================*/
/*transform-section */
/* ==================================================================*/

.transform-section {
  padding: 0px 0px 60px 0px;
  margin: 0px;
  overflow: hidden;
  position: relative;
  background: #fbfbff;
}

.transform-section-slider {
  margin: 0px auto;
  padding: 0px 0px 60px 0px;
  max-width: 800px;
  overflow: hidden;
}

.transform-section-slider img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.transform-section-slider .owl-dots {
  position: absolute;
  bottom: -30;
  right: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
}

.transform-section-slider .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0px;
  background: #d9d9d9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
}

.transform-section-slider .owl-dots .owl-dot.active span,
.transform-section-slider .owl-dots .owl-dot:hover span {
  background: #8b5cf6;
  width: 37px;
  height: 14px;
  border-radius: 25px;
}

.transform-section-slider .owl-nav {
  display: none;
}

.transform-section-content {
  margin: 0px;
  margin: 0px auto;
  max-width: 1050px;
  text-align: center;
}

.transform-section-content h2 {
  font-weight: 700;

  font-size: 48px;

  line-height: 70px;
  letter-spacing: 0px;
  text-align: center;
  color: #1d2f6f;
  margin: 0px 0px 10px 0px;
  padding: 0px;
}

.transform-section-content h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -4%;
  text-align: center;
  color: #665aca;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

.transform-section-content p {
  font-family: Montserrat;
  font-weight: 500;

  font-size: 20px;

  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  color: #434d56;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

.client-testimonial {
  margin: 0px;
  padding: 0px;
}

.client-testimonial-box {
  border: 1px solid #eff0f6;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: 34px 0px;
  border-radius: 20px;
  width: 100%;
  height: 260px;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  overflow: hidden;
}

.client-testimonial-box::before {
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50% 0% 50% 0%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  /*background: linear-gradient(30deg, #FC466B 0%, #3F5EFB 100%);*/
  /* background-image: linear-gradient(to top, #FD8251, #FE625E); */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.client-testimonial-box:hover::before {
  height: 100%;
  width: 100%;
  bottom: unset;
  top: 0;
  right: 0;
  left: unset;
  border-radius: 0;
}

.client-testimonial-box-inner {
  position: relative;
  z-index: 2;
}

.client-testimonial-box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.client-testimonial-box-inner p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #6f6c90;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

/*.client-testimonial-box:hover .client-testimonial-box-inner p {*/
/*	color: #fff;*/
/*}*/

.client-info {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
}

.client-info-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.client-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info-text h4 {
  font-weight: 700;

  font-size: 18px;

  line-height: 28px;
  letter-spacing: 0%;
  color: #170f49;
  padding: 0px;
  margin: 0px;
}

/*.client-testimonial-box:hover .client-info-text h4 {*/
/*	color: #FBFBFF;*/
/*}*/

.client-info-text h6 {
  font-weight: 400;

  font-size: 16px;

  line-height: 16px;
  letter-spacing: 0px;
  color: #6f6c90;
  padding: 0px;
  margin: 0px;
}

/*.client-testimonial-box:hover .client-info-text h6 {*/
/*	color: #fff;*/
/*}*/

.testimonial-carousel .owl-dot {
  display: none;
}

.testimonial-carousel .owl-nav {
  display: none;
}

/* ==================================================================*/
/*transform-section */
/* ==================================================================*/

/* ==================================================================*/
/*Unifying-section */
/* ==================================================================*/

.unifying-section {
  margin: 0px;
  padding: 60px 0px;
  position: relative;
  background-image: url(../images/about-bg.png);
  min-height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.unifying-section-left-img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  bottom: 0px;
  -webkit-animation: move-to 5s infinite linear;
  animation: move-to 5s infinite linear;
  z-index: -1;
}

.unifying-section-right-img {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-animation: move-to 5s infinite linear;
  animation: move-to 5s infinite linear;
  z-index: -1;
}

.unifying-section-icon {
  margin: 0px auto;
  text-align: center;
  width: 200px;
  height: 200px;
  border-radius: 45px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: linear-gradient(
    180deg,
    rgba(83, 92, 255, 0) 0%,
    rgba(102, 90, 202, 0.3) 100%
  );
  margin: 0px auto;
  text-align: center;
  box-shadow: 0px 0px 68.32px 0px #ffffff1a inset;
  backdrop-filter: blur(20px);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unifying-section-tittle {
  padding: 60px 0px 0px 0px;
  margin: 0px auto;
  max-width: 710px;
  text-align: center;
}

.unifying-section-tittle h2 {
  font-weight: 700;

  font-size: 48px;

  line-height: 120%;
  letter-spacing: -4%;
  text-align: center;
  background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
  padding: 0px 0px 30px 0px;
  margin: 0px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.unifying-section-tittle p {
  font-weight: 500;

  font-size: 20px;

  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  color: #434d56;
  padding: 0px;
  margin: 0px;
}

/* ==================================================================*/
/*Unifying-section */
/* ==================================================================*/

/* ==================================================================*/
/*privacsection-section */
/* ==================================================================*/

.privacsection-section {
  padding: 60px 0px;
  overflow: hidden;
  position: relative;
}

.privacsection-section-left {
  padding: 0px;
  margin: 0px;
}

.your-privacy-section {
  background: #f4f5ff;
  border-radius: 20px;
  text-align: left;
  padding: 40px;
  -webkit-transition: 0.9s;
}

.your-privacy-section:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.29);*/
}

.your-privacy-section h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0px;
  color: #1d2f6f;
  padding: 0px 0px 20px 0px;
  margin: 0px;
  max-width: 69%;
}

.your-privacy-section p {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #434d56;
  padding: 0px 0px 30px 0px;
  margin: 0px;
}

.your-privacy-section-img {
  -webkit-animation: bounce 4s infinite linear forwards;
  animation: bounce 4s infinite linear forwards;
}

.privacsection-section-right {
  padding: 0px 0px 0px 50px;
  margin: 0px;
}

.privacsection-section-right-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin: 0px 0px 20px 0px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 30px;
  height: 145px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.9s;
}

/*.privacsection-section-right-box::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	width: 0%;*/
/*	height: 0%;*/
/*	-webkit-transition: 0.5s;*/
/*	transition: 0.5s;*/
/*}*/

/*.privacsection-section-right-box::before {*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	width: 0%;*/
/*	height: 0%;*/
/*	-webkit-transition: 0.5s;*/
/*	transition: 0.5s;*/
/*}*/

.privacsection-section-right-box:hover::after {
  width: 50%;
  height: 50%;
  border-right: 2px solid #fc466b;
  border-bottom: 2px solid #fc466b;
  border-bottom-right-radius: 20px;
}

.privacsection-section-right-box:hover::before {
  width: 30%;
  height: 70%;
  border-left: 2px solid #3f5efb;
  border-top: 2px solid #3f5efb;
}

/*.privacsection-section-right-box:hover {*/
/*	-webkit-transform: translateY(-10px);*/
/*	transform: translateY(-10px);*/
/*	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.29);*/
/*}*/

.privacsection-section-righ-icon {
  background: #e9fffc;
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.privacsection-section-right-box:hover .privacsection-section-righ-icon {
  /* -webkit-animation: jello .5s 3;
	animation: jello .5s 3;
	animation-delay: 0s; */
  color: var(--blackColor);
  /* -webkit-animation-delay: .3s;
	animation-delay: .3s; */
  background: #1d2f6f;
}

.privacsection-section-righ-text {
  padding: 0px;
  margin: 0px;
}

.privacsection-section-righ-text h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #1d2f6f;
  margin: 0px 0px 15px 0px;
  padding: 0px;
}

.privacsection-section-righ-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #434d56;
  margin: 0px;
  padding: 0px;
  max-width: 90%;
}

/* ==================================================================*/
/*privacsection-section */
/* ==================================================================*/

/*==================================================================*/
/*footer - section*/
/* ==================================================================*/

.footer-section {
  background: #02092a;
  padding: 0px;
  position: relative;
  border-radius: 50px 50px 0px 0px;
  overflow: hidden;
}

.footer-right-arrow {
  position: absolute;
  right: 0px;

  -webkit-animation: move-to 5s infinite linear;
  animation: move-to 5s infinite linear;
}

.footer-top {
  padding: 80px 0px;
  margin: 0px;
}

.newsletter-content {
  position: relative;
  text-align: center;
}

.newsletter-content h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 0px 0px 25px 0px;
  padding: 0px;
  text-align: left;
  max-width: 70%;
}

.newsletter-content .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.form-control::placeholder {
  color: #7f8293;
  opacity: 1;
}

.newsletter-content .input-group .form-control {
  padding: 15px 20px;
  border-radius: 0px;
  border: 0px;
  background: #1b213f;
  color: #7f8293;
}

.newsletter-content .input-group .news-btn {
  margin: 0px;
  border: 0px;
  z-index: 9;
  height: 100%;
  font-weight: 600;
  padding: 0px 20px;
  border-radius: 10px 10px 0px 0px !important;
  background-color: #ffc200;
  position: absolute;
  right: 0px;
  top: 0px;
  text-align: center;
  color: #02092a;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-icon-section {
  margin: 30px 0px;
  padding: 0px;
}

.footer-menu-row {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 110px;
}

.footer-menu-row h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 0px 0px 25px 0px;
  padding: 0px;
  text-align: left;
}

.footer-menu-box {
  padding: 0px;
  margin: 0px;
}

.footer-menu-box ul {
  padding: 0px;
  margin: 0px;
}

.footer-menu-box ul li {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.footer-menu-box ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #fff;
  padding: 0px;
  margin: 0px;
  transition: all 300ms ease-in-out;
}

.footer-menu-box a:hover {
  color: #ffc200;
  padding-left: 4px;
}

.footer-icons-area {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
}

.footer-icons-area h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 0px 0px 25px 0px;
  padding: 0px;
  text-align: left;
}

.footer-icons-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-icons-area ul li {
  display: inline-block;
}

.footer-icons-area ul li a {
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin: 0px 3px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: transparent;
  position: relative;
  border: 1px solid #fff;
}

.footer-icons-area ul li a::before {
  content: "";
  width: 100%;
  height: 0%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #073798;
  border: 1px #3f5efb;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.footer-icons-area ul li a i {
  position: relative;
  z-index: 1;
}

.footer-icons-area ul li a:hover {
  color: #fff;
}

.footer-icons-area ul li a:hover::before {
  height: 100%;
}

.footer-menu-box.footer-menu-box-frst ul {
  column-count: 2;
}

.footer-menu-box.footer-menu-box-frst ul li {
  padding-right: 30px;
}

.copyright {
  padding: 20px 0px;
  border-top: 1px solid #fffcf8;
  margin: 0px;
}

.copyright-text {
  padding: 0px;
  margin: 0px;
}

.copyright-text p {
  font-weight: 400;

  font-size: 15px;

  line-height: 100%;
  letter-spacing: -0.2px;
  color: #fff;
  padding: 0px;
  margin: 0px;
}

.footer-side-menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.footer-side-menu ul li {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.footer-side-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  color: #fff;
  padding: 0px;
  margin: 0px 15px 0px 0px;
  position: relative;
}

.footer-side-menu ul li a::after {
  font: normal normal normal 16px/1 FontAwesome;
  content: "|";
  height: auto;
  width: 5px;
  position: absolute;
  margin: 0px 0px 0px 8px;
  color: #d5e9e5;
  font-size: 20px;
}

.footer-side-menu ul li a:hover {
  color: #0476e7;
}

.footer-side-menu ul li:last-child a::after {
  display: none;
}

/*==================================================================*/
/*footer - section*/
/* ==================================================================*/

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 100px;
  right: 20px;
  border-radius: 50px;
  background-color: #ffc200;
  color: #ffffff;
  z-index: 999;
  width: 50px;
  text-align: center;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  -webkit-transition: var(--transition);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: #000;
  border: 1px solid #000;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
  -webkit-animation: top-bottom 5s infinite linear;
  animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/

/*==================================
Animation CSS
====================================*/
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@-webkit-keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes move-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes move-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes waving-line {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200px 0;
  }
}

@-webkit-keyframes waving-line {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200px 0;
  }
}

/*==================================
Animation CSS
====================================*/

/*==================================
sliding-card Css
====================================*/

.bg-lightblue {
  background: rgba(209, 233, 251, 0.75);
}

.bg-orange {
  background: rgba(255, 247, 217, 1);
}

.bg-geen {
  background: rgba(233, 255, 252, 1);
}

.bg-yellow {
  background-color: rgba(244, 255, 213, 1);
}

.bg-pink {
  background: rgba(255, 227, 237, 1);
}

.bg-cream {
  background: rgba(255, 253, 203, 1);
}

/*---sliding crad---*/

.space {
  height: 10vh;
}

.cards {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  /* grid-template-rows: repeat(var(--cards-count), var(--card-height)); */
  gap: 50px 0;
  position: relative;
}

.card {
  position: sticky;
  top: 0;
  border-radius: 24px;
  /*overflow: hidden;*/
  color: #fff;
  background: transparent;
}

.sliding-card .card::before {
  content: "";
  position: absolute;
  height: 85px;
  width: 78%;
  background: #e9eaff;
  top: -10px;
  left: 100px;
  border-radius: 30px 0 0 0;
  opacity: 1;
  transform: translateY(50px) rotateZ(3deg);
  transition: transform 1.2s ease;
  pointer-events: none;
}

/* Slide UP on hover */
.sliding-card .card:hover::before {
  transform: translateY(0) rotateZ(5deg);
}

.sliding-card .card .hover-btn {
  position: absolute;
  top: 13px;
  right: 171px;
  transform: translateX(-50%) translateY(20px);
  width: 124px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Show on hover */
.sliding-card .card:hover .hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.card__inner {
  position: relative;
  z-index: 999;
  padding: 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform-origin: center top;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Background colors for each card */
.card:nth-child(1) .card__inner {
  background-color: #0b3d91;
}

/* blue */
.card:nth-child(2) .card__inner {
  background-color: #b8822a;
}

/* gold */
.card:nth-child(3) .card__inner {
  background-color: #1b1155;
}

/* nevi blue */
.card:nth-child(4) .card__inner {
  background: rgba(18, 101, 40, 1);
}

/* nevi blue */
.card:nth-child(5) .card__inner {
  background-color: #25316b;
}

/* semi blue */
.card:nth-child(6) .card__inner {
  background-color: #8b1415;
}

/* Dark red */

.card__content {
  flex: 1;
  max-width: 64%;
}

.card__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 17px;
  line-height: 50px;
}

.card__title span {
  color: #f7e00b;
}

.card__content h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  margin: 0px 0px 20px 0px;
}

.card__desc {
  font-size: 18px;
  font-weight: 400;
  color: #f4f4f4;
  margin-bottom: 30px;
  line-height: 28px;
  text-align: left;
}

.highlight-section {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.cards .card {
  border: none !important;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 30px 30px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-box img {
  /*width: 80px;*/
  /*height: 80px;*/
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.highlight-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 9px;
  font-family: Montserrat;
  line-height: 32px;
}

.highlight-box p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  color: #fff;
}

.highlight-box div {
  display: flex;
  flex-direction: column;
  /* Stack title and description */
}

.card__btn {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 28px;
  transition: 0.3s;
  position: absolute;
  top: 40px;
  right: 25px;
  z-index: 2;
}

.card__btn:hover {
  background: #fff;
  color: #000;
}

.card__btn svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.card__image {
  flex-shrink: 0;
  width: 32%;
  text-align: right;
}

.card__image img {
  width: 100%;
  max-width: fit-content;
  position: absolute;
  /* top: 200px; */
  right: 0px;
  z-index: 2;
  height: max-content;
  bottom: 0;
}

@media (max-width: 768px) {
  .card__inner {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }

  .card__content {
    max-width: 100%;
  }

  .card__image {
    margin-top: 30px;
    width: 70%;
  }
}

/* ============================================
         ANIMATIONS
============================================ */

.themeBTn.withoutBg:hover {
  background: #1463ff;
  transition: 0.3s ease-in-out;
  color: #fff;
}

.sliding-card .card:hover::after {
  transform: translateY(36px) rotateZ(9deg);
  opacity: 1;
}

.sliding-card .card::after {
  content: "";
  position: absolute;
  height: 79px;
  width: 91%;
  background: #e9eaff;
  bottom: 137px;
  right: 38px;
  border-radius: 0px 0px 30px 0px;
  opacity: 0;
  transform: translateY(0px) rotateZ(1deg);
  transition: transform 1.2s ease, opacity 0.6s ease;
  pointer-events: none;
}

/*==================================
sliding-card Css
====================================*/

/*.typewriter {*/
/*	display: inline-block;*/
/*	white-space: nowrap;*/
/* single line; remove if you want wrapping */
/*	overflow: hidden;*/
/* hide unrevealed text */
/*	animation: typing 5s steps(60, end) forwards, blink 0.8s step-end infinite;*/
/*}*/

/* Adjust steps to match character length for smoother reveal */

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
