/* Global Styles */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.2;
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #120321;
  overflow-x: hidden;
}


p {
  margin: 0;
}

.main-paragraph {
  font-size: calc(16px + (24.0 - 16) * ((100vw - 1001px) / (2200 - 1001)));
  line-height: 1.5;
  margin: 0;
}

h1 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));

  margin-top: 0;
}

.top-heading {
  font-size: calc(46px + (76.0 - 46) * ((100vw - 1001px) / (2200 - 1001)));

  margin-top: 0;
}

.top-heading-banner {
  font-size: calc(46px + (76.0 - 46) * ((100vw - 1001px) / (2200 - 1001)));
  margin-top: 0;
  margin-bottom: 0.83em;
}

.header-element p,
.secondary-paragraph a,
a p,
button p,
.footer-bottom p {
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
}

.secondary-paragraph a {
  color: #FFF;
}

.secondary-paragraph-top {
  font-size: calc(12px + (16.0 - 12) * ((100vw - 1001px) / (2200 - 1001)));
}

h2 {
  font-size: calc(24px + (44.0 - 24) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 700;
}

h3 {

  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 700;
}

h4 {
  font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

h1,
h2 {
  font-weight: 600;
}

h3,
h4 {
  font-weight: 500;
}


strong {
  font-weight: 700;
}

b {
  font-weight: 800;
}



a {
  text-decoration: none;
  display: inline-block;

}

.color-text {
  color: #120321;

}

.color-text:hover {

  color: #120321;
}

.white-purple-arrow {
  fill: white;
  color: white;


}


.button {
  background-color: #4B006E;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: 1px solid #4B006E;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);

}

.hamburger-cross-button {
  background-color: #4B006E;
  border-radius: 30px;
  padding: 3px;
  display: none;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: 1px solid #4B006E;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);
}

.hamburger-parent {
  display: none;
}

.new-hamburger {
  display: block;
}

.hamburger-button {
  background-color: white;
  border-radius: 30px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);
}


.button p {

  padding-left: 15px;
  padding-right: 15px;

}

.button img,
button .white-purple-arrow {
  min-width: 32px;
  padding: 10px;
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 50%;
  background-color: #ffffff3d;
}

.button .link-btn-sec {
  padding: 0px 15px;
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
}

.white-purple-arrow {
  padding: 8px !important;
  border-radius: 40px;
  padding-left: 7px !important;
  padding-right: 7px !important;
  width: 30px;
  height: 30px;
}


.button:hover {
  background-color: #F6E2FF;
  border: 1px solid white;
  color: #4B006E;
  transition: ease-in-out .3s;
}

.button:hover img {
  transition: ease-in-out .3s;
  background-color: #4B006E;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;

}

.header-top-banner {
  height: 20px;
  background-color: #F6E2FF;
}

.header-top-banner::before {
  content: "";
  display: block;
  height: 100vh;
  width: 20px;
  background: linear-gradient(to bottom, #F6E2FF, #F6E2FF, rgba(255, 255, 255, 0));
}

.header-top-banner::after {
  content: "";
  margin-top: -100vh;
  float: right;
  display: block;
  height: 100vh;
  width: 20px;
  background: linear-gradient(to bottom, #F6E2FF, #F6E2FF, rgba(255, 255, 255, 0));

  z-index: 4 !important;
}

.header-element {
  margin-left: 10px;

  display: flex;
  align-items: stretch;
  justify-content: space-between;
  z-index: 5 !important;
}



.logo {
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 15px;
  display: flex;
  padding-bottom: 15px;
  background-color: #F6E2FF;
  border-end-end-radius: 30px;
}

.logo::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-color: rgba(255, 0, 0, 0);
  position: absolute;
  bottom: -40px;
  left: 20px;
  border-top-left-radius: 30px;
  box-shadow: -10px -15px 0 0 #F6E2FF;
}

.logins::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-color: rgba(255, 0, 0, 0);
  position: absolute;
  bottom: -40px;
  right: 20px;
  border-top-right-radius: 30px;
  box-shadow: 10px -15px 0 0 #F6E2FF;
}

.logo img {
  width: clamp(120px, 15vw, 220px);
  min-width: 120px;
  max-width: 200px;
  height: auto;
}

.links-div {
  display: flex;

  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  padding-bottom: 0;
  border-radius: 30px;
  box-shadow: -15px -25px 0 0 #F6E2FF,
    15px -25px 0 0 #F6E2FF;
}

.links {

  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;

}

.quick-links ul {
  padding: 0px;
}

.quick-links ul li a {
  color: #fff;
  margin-bottom: 10px;
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
}

.menu-item {
  color: #120321;
  list-style: none;
}

.menu-item:hover {
  color: #B462A6;
  transition: ease-in-out .3s;

}



.demo-button {
  background-color: #4B006E;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: 1px solid #4B006E;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);
  gap: 10px;
}

.demo-button p {

  padding-left: 10px;
  /* padding-right: 10px; */

}

.demo-button img {
  padding: 8px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 50%;
  background-color: #ffffff3d;
}

.demo-button:hover {
  background-color: #F6E2FF;
  border: 1px solid white;
  color: #4B006E;
  transition: ease-in-out .3s;

}

.demo-button:hover img {
  transition: ease-in-out .3s;

  background-color: #4B006E;
}

.logins {

  display: flex;
  align-items: center;
  padding-left: 13px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #F6E2FF;
  border-bottom-left-radius: 30px;
}

.kia-login,
.parrot-login {
  /* width: 7.3vw; */
  white-space: nowrap;
  min-width: 80px;
  color: #120321;
  margin-right: 20px;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);

}



.parrot-login {
  background: linear-gradient(to bottom, #FFF2D0, #ffff);

}

.parrot-login:hover {
  background: linear-gradient(to bottom, #120321, #120321);
  transition: ease-in-out .3s;


}

.parrot-login:hover {
  color: white;
  transition: ease-in-out .3s;


}

.kia-login {
  background: linear-gradient(to bottom, #DCEAFF, #ffff);
}

.kia-login:hover {
  transition: ease-in-out .3s;

  background: linear-gradient(to bottom, #120321, #120321);

}

.kia-login:hover {
  color: white;
  transition: ease-in-out .3s;

}

.kia-login p,
.parrot-login p {

  padding-left: 13px;

}

.light-button {
  width: 7vw;
  min-width: 130px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.light-button p {
  color: #4B006E;
  margin-right: 10px;
}


/* first section */


.top-arrow-after-heading {
  display: none;
}

.first-section {
  padding: 80px;
  z-index: 5 !important;

  height: 100vh;
  display: flex;
  /* background-image: url('/assets/New-file.gif'); */
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; */
  background-image: none !important;
  position: relative;


  justify-content: space-between;
}

section.first-section:before {
  content: "";
  background-image: url(https://purplescape.codespace.co.in/wordpress/wp-content/themes/purplescape/images/newfile.gif);
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  background-position: center;
  background-size: cover;
}

.top-right-asset-div {
  display: none;
}


.top-mobile-slider-parent {
  position: absolute;
  right: 15%;
  width: 35vw;
  height: calc(10vw + 80px);
  /* max-width: 270px; */
  min-width: 220px;
  display: block;


  overflow: visible;
  bottom: auto;

  top: clamp(220px, 10vw, 500px) !important;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;

}

.top-mobile-slider {
  width: 100%;

  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
  height: 100%;

  overflow: visible;
  /* Ensure images stay within bounds */
  position: relative;
}

/* Shutter animation for images */
/* Shutter and zoom animation for images */
.mobile-slider-image {
  width: 90%;
  border-radius: 20px;
  z-index: 5;
  position: absolute;
  /* Stack images on top of each other */
  top: 0;
  left: 0px;
  opacity: 0;
  /* Initially hidden */
  transform: scale(1.1);
  /* Default scale */
  transition:
    opacity 0.8s ease-in-out,
    clip-path 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  /* Smooth fade, clip-path, and zoom */
  clip-path: inset(50% 0 50% 0);
  /* Start with shutter closed */
}

/* Active image styling with shutter open */
.mobile-slider-image.active {
  opacity: 1;
  /* Fully visible when active */
  transform: scale(1);
  /* Reset zoom for appearing image */
  clip-path: inset(0 0 0 0);
  /* Fully open from top and bottom */
}

/* Inactive image styling with shutter closing and zoom */
.mobile-slider-image.inactive {
  opacity: 0;
  /* Fully hidden when inactive */
  transform: scale(1.1);
  /* Slight zoom during disappearance */
  clip-path: inset(50% 0 50% 0);
  /* Shutter closes to the middle */
}




.top-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 65%;
  position: relative;
  z-index: 3;
}

.first-collumn {
  z-index: 5;
}

.first-section-content {
  z-index: 9;
}




.dynamic-span {
  display: none;
  /* position: absolute; */
  color: rgba(255, 0, 0, 0);

  opacity: 0;

}


.dynamic-span.active {
  display: inline-block;
  color: #4B006E;
  opacity: 0;
  /* Initial state */
  animation: fadeIn 2s forwards;
  /* Animation for 2 seconds */
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }

}

.top-left-asset {

  left: calc(11vw + 57px);
  width: 19%;
  max-width: 480px;
  min-width: 300px;
  position: absolute;
  top: calc(35vh + 50px);

}

.top-right-assets {
  position: relative;
  width: 100%;
  height: 100%;

}


.top-right-asset-div {
  position: absolute;
  width: calc(70vw - 250px);
  height: calc(25vw + 20vh);
  top: 80px;
  right: 80px;
  min-height: 450px;


}

.top-right-asset-1 {
  position: absolute;
  top: 50px;
  width: 20%;
  max-width: 280px;
  min-width: 130px;
  right: 30%;

}

.top-right-asset-2 {
  position: absolute;
  top: calc(22% - 50px);

  width: 22%;
  max-width: 320px;
  min-width: 150px;
  right: 0px;
}

.top-right-asset-3 {
  position: absolute;
  bottom: calc(19% - 110px);

  width: 20%;
  max-width: 300px;
  min-width: 150px;
  right: calc(50% + 60px);
}

.top-card1 {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.699);
  right: calc(50% + 60px);
  top: calc(8% + 5vh);
  padding: 20px;
  width: 20%;
  max-width: 400px;
  min-width: 120px;
  box-shadow: rgb(131, 92, 92) 2px 2px 15px;
  border-radius: 20px;
  z-index: 2;

}

.top-card2 {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.699);
  right: calc(20% - 100px);
  bottom: calc(20% - 100px);
  padding: 20px;
  width: 30%;
  max-width: 600px;
  min-width: 250px;
  box-shadow: rgb(131, 92, 92) 2px 2px 15px;
  border-radius: 20px;
  z-index: 2;

}

.image-name {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.image-name h4 {
  margin: 0px;
}

.top-card2 h4 {
  margin-top: 0;
  margin-bottom: 15px;
}

.image-name2 {
  display: flex;
  align-items: start;
}

.image-name img {
  margin-right: 20px;
  border-radius: 50%;
}

.image-name2 img {
  margin-right: 20px;
  border-radius: 50%;
  height: auto;
}



/* second-section */
.second-section {
  display: flex;
  align-items: center;
  position: relative;
  height: 950px;
}

.second-section-next-gen-video {
  display: flex;
  align-items: center;
}

.second-section-next-gen-outer-div {
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid rgb(170, 163, 163);
  z-index: 3;
  background-color: white;
  border-start-end-radius: 30px;
  border-end-end-radius: 30px;
}

.mobile-background-blur {
  border: none;
  z-index: 3;
}

.second-section-next-gen {
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
  padding-left: 5vw;
  padding-right: 5vw;
  background: radial-gradient(163.98% 99.13% at 101.14% 98.78%, #F6E2FF 0%, #4B006E 100%);
  border-start-end-radius: 20px;
  border-end-end-radius: 20px;
  z-index: 2;
  position: relative;
}

.next-gen-title {
  color: white;
  margin-top: 15px;
}


/* popup */
/* popup */

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.popup-parent {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000 !important;
  justify-content: center;
  align-items: center;
}

.popup {
  width: 60%;
  max-width: 1500px;
  min-width: 600px;

  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 60px;

}

.popup-header {
  color: #4B006E;
  margin-bottom: 20px;
}

.popup-para-1st,
.popup-para-2nd {
  margin-bottom: 40px;
}

.popup h2 {
  margin: 0 0 25px;
}

/* popup */
/* popup */

.second-sec-asset {
  width: 50vw;
  margin-left: -10vw;
  z-index: 0;

}

.mobile-assets {
  display: none;
}

.next-gen-button {
  background-color: #12032100;
  border: none;
}

.next-gen-button-div {
  display: flex;
  align-items: center;
  border: 2px solid white;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 40px;
}

.next-gen-button-div svg {
  color: white;
  background-color: #4b006e00 !important;

}

.next-gen-button-div:hover {
  display: flex;
  border: 2px solid white;
  background-color: white;
  color: #120321;
  transition: ease-in-out .3s;

}

.next-gen-button-div:hover p {
  transition: ease-in-out .3s;

  color: #120321;
}

.next-gen-button-div:hover svg {

  background-color: #fa606000;
  fill: #120321;
}

.next-gen-button-div p {
  margin-right: 15px;
  color: white;
}

.next-gen-button-middle-div {
  padding-top: 15px;
  padding-bottom: 15px;
}


.card1 {
  padding: 20px;
  background-color: #ffffff;
  position: absolute;
  width: 25vw;
  width: 350px;
  border-radius: 40px;
  transform: translate(20%, -100%);
  top: 45%;
  left: 55%;
  /* border: 1px solid rgb(116, 114, 114); */
}

.card2 {
  padding: 20px;
  background-color: #ffffff;
  position: absolute;
  width: 25vw;
  max-width: 350px;

  border-radius: 40px;
  transform: translate(20%, 5%);
  bottom: 3%;
  left: 38%;

}

.border-card {
  position: absolute;
  width: 100%;
  max-width: 390px;
  height: 100%;
  left: 1px;
  top: 1px;
  z-index: 4;
}

.icon-text {
  display: flex;
  align-items: center;

}

.icon-text-heading {
  margin-left: 15px;
  color: #120321;
}

.bottom-title-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.card1 h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.card2 h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  min-width: 160px;
  transition: ease-in-out .3s;
}

.icon-textbottom-title {
  color: #4B006E;
  width: 37%;
  position: absolute;
  bottom: 20px;
}



.middle-title {
  color: #120321;
  position: absolute;
  top: 85%;
  opacity: 0;
}

.second-middle-title {
  width: 82%;
}

.card-middle-text p {
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
  margin-top: 21%;
  margin-bottom: 100px;
  opacity: 0;
}

.card2 p {
  margin-top: 30%;
  margin-bottom: 100px;
  opacity: 0;
}



.card1:hover .card-middle-text p {
  opacity: 1;
  transition: ease-in-out .3s;

}

.card2:hover .card-middle-text p {
  opacity: 1;
  transition: ease-in-out .3s;

}

.card1:hover .middle-title {
  opacity: 1;
  transition: ease-in-out .4s;
  top: 18%;
}

.card2:hover .middle-title {
  opacity: 1;
  transition: ease-in-out .4s;
  top: 18%;
}

.card1:hover .icon-textbottom-title {
  transition: ease-in-out .3s;
  opacity: 0;
  bottom: 40%;
}

.card2:hover .icon-textbottom-title {
  transition: ease-in-out .3s;
  opacity: 0;
  bottom: 40%;
}




.card1:hover .card-img {

  opacity: 0;

}

.card2:hover .card-img {

  opacity: 0;

}

.card1:hover {

  background: linear-gradient(to bottom, #DCEAFF, #ffff);
  transition: ease-in-out .4s;

}

.card1:hover .top-card-arrow {
  fill: #4B006E;
  background-color: #F6E2FF;
  transition: ease-in-out .4s;
}

.card2:hover .bottom-card-arrow {
  fill: #4B006E;
  background-color: #F6E2FF;
  transition: ease-in-out .4s;
}

.card1:hover .button {
  fill: #4B006E;
  background-color: #F6E2FF;
  transition: ease-in-out .2s;
  border: 1px solid #F6E2FF;
}

.card2:hover .button {
  fill: #4B006E;
  background-color: #F6E2FF;
  transition: ease-in-out .2s;
  border: 1px solid #F6E2FF;
}

.card2:hover {

  background: linear-gradient(to bottom, #FFF2D0, #ffff);
  transition: ease-in-out .4s;

}




.absolute-button-div-top {
  position: absolute;
  bottom: 0px;
  right: 0px;
}




/*  */
/*  */
/*  */
/*  */




/******* Common Element CSS Start ******/




.main-container {
  display: flex;
  align-items: center;
  justify-content: center;


}

.main {
  width: 400px;
  height: 400px;
  position: relative;


}

.big-circle {
  background: linear-gradient(to top left, #F6E2FF, #ffff, #ffff, #ffff);
  width: 100%;
  height: 100%;
  border: 3px solid #6495f2;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit 10s linear infinite;
}

.small-circle {
  width: 50px;
  height: 50px;
  background-color: #f28b81;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Keyframe for Counter-Clockwise Orbit Animation */
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.main-container2 {
  display: flex;


  margin-left: 00px;
}

.main2 {
  width: 2500px;
  height: 2500px;
  position: relative;
}

.big-circle2 {
  background: linear-gradient(to top left, #F6E2FF, #ffff, #ffff, #ffff);
  width: 100%;
  height: 100%;
  border: 3px solid #6495f2;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit2 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit 10s linear infinite;
}

.small-circle2 {
  width: 50px;
  height: 50px;
  background-color: #f28b81;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Keyframe for Counter-Clockwise Orbit Animation */
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* trust us globally */

.trust-us-section {
  padding-top: 60px;
  padding-bottom: 100px;

  background: radial-gradient(ellipse closest-side,
      #F6E2FF,
      #f6e2ff 10%,
      #f6e2ff83 70%,
      white);

}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: rgb(145, 143, 143);
    --color-bg: #white;
    --color-bg-accent: white;
  }
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);

}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}


/* Element styles */
.marquee svg {
  display: grid;
  place-items: center;

  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/7;
  padding: 20px;
  border-radius: 20px;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto;
  max-width: 100vw;
}

/*  */
/* marque code */







/* what we believe */

.what-we-believe-h1-outside-card {
  display: none;
}

.what-we-believe-h1-inside-card {
  display: block;
  margin-bottom: 40px;
  color: #fff;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
}

.what-we-believe-section {
  padding: 80px;
  padding-bottom: 160px;
  padding-top: 0;
}

.what-we-believe-card {
  padding: 80px;
  background: conic-gradient(from 180deg, #F6E2FF, #4B006E);
  border-radius: 20px;
}

.what-we-believe-card ul li {
  font-size: calc(16px + (24.0 - 16) * ((100vw - 1001px) / (2200 - 1001)));
  line-height: 1.5;
  margin-bottom: 14px;
}

.what-we-believe-card h1 {
  color: white;
  margin-bottom: 60px;
}

.bottom-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
}

/* .bottom-text h3 {
  font-size: calc(24px + (44.0 - 24) * ((100vw - 1001px) / (2200 - 1001)));
} */
.ai-integrated-systems h3 {
  height: 110px;
  padding-bottom: 20px;
  font-size: calc(24px + (44.0 - 24) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 16px;
}

.bottom-text .conventional-systems h3 {
  height: 110px;
  padding-bottom: 20px;
  font-size: calc(24px + (44.0 - 24) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 16px;
}

.conventional-systems {
  color: #4B006E;
}

.conventional-systems ul {
  padding-left: 40px;
  list-style: none;
}

.ai-integrated-systems {
  color: white;
}

.ai-integrated-heading,
.conventional-heading {
  font-weight: 500;
  margin-top: 0;
  height: 90px;
  height: 10;
  padding-bottom: 20px;
}

.we-believe-icon-text {
  display: grid;
  grid-template-columns: 4% auto;
  gap: 20px;
  height: 100px;
  align-items: start;


}

.we-believe-icon-text img {
  width: 60%;

  max-width: 60px !important;
  min-width: 20px !important;

}

.what-we-believe-button-parent {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: -64px;
}

.radius-shadow {
  background-color: rgba(255, 0, 0, 0);
  width: 50px;
  height: 40px;
  margin-bottom: 11px;
}

.first-shadow {
  box-shadow: 10px 10px 0 0 rgb(255, 255, 255);
  border-end-end-radius: 30px;
}

.second-shadow {
  border-end-start-radius: 30px;
  box-shadow: -10px 10px 0 0 rgb(255, 255, 255);
}

.what-we-believe-button-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: white;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 1;
}



/* extra hour  */

.extra-hour-section-parent {
  padding-inline: 80px;
  padding-bottom: 80px;
}



.extra-hour-section {
  height: 700px;
  background-image: url("/assets/body-assets/image\ 13.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 60px;
}

.extra-hour-tablet-image {
  display: none;
}

.extra-hour-content-parent {
  align-items: flex-end;
  display: flex;
  position: relative !important;
}

.top-radius-bar {
  position: absolute;
  border-radius: 30px;
  background-color: rgba(255, 0, 0, 0);
  box-shadow: rgb(255, 255, 255) -70px 0px;
  width: 445px;
  height: 80px;
  right: 50%;
}

.top-radius-bar-2nd {
  position: absolute;
  border-start-start-radius: 30px;
  background-color: rgba(102, 27, 27, 0);
  box-shadow: rgb(255, 255, 255) -70px 0px;
  width: 445px;
  height: 80px;
  top: 350px;
  right: 50%;
}

.top-radius-bar-3rd {
  position: absolute;
  border-radius: 30px;
  background-color: rgba(255, 0, 0, 0);
  box-shadow: rgb(255, 255, 255) 70px 0px;
  width: 445px;
  height: 80px;
  left: 50%;
  bottom: 0;
}

.top-radius-bar-4rth {
  position: absolute;
  border-end-end-radius: 30px;
  background-color: rgba(255, 0, 0, 0);
  box-shadow: rgb(255, 255, 255) 70px 0px;
  width: 445px;
  height: 80px;
  left: 50%;
  bottom: 565px;
}

.extra-hour-content {
  padding: 40px;
  padding-right: 0px;
  height: max-content;
  background-color: white;
  border-start-start-radius: 40px;
  border-end-start-radius: 40px;
  height: 485px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.extra-hour-hidden-content {
  display: none;
}

.extra-hour-heading-content {
  margin-top: 80px;
  margin-left: 0;
  height: 270px;
  background-color: white;
  padding: 40px;
  padding-left: 0;
  border-start-end-radius: 40px;
  border-end-end-radius: 40px;
}

.extra-hour-heading-content h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
}

.extra-hour-content-parent .extra-hour-content {
  font-size: calc(16px + (24.0 - 16) * ((100vw - 1001px) / (2200 - 1001)));
  line-height: 1.5;
}

.extra-hour-paragraph {
  margin-bottom: 40px;

}

.extra-hour-section-semi-bold-paragraph {
  font-weight: 700;
}


.extra-hour-content .absolute-button-div {
  position: relative;
}

.extra-hour-content .absolute-button-div .tall-border-radius-bottom,
.extra-hour-content .absolute-button-div .div-button-combined .border-radius,
.tablet-radius-shadow-asset {
  display: none;
}

.extra-hour-content .absolute-button-div .div-button-combined .button-white-background {
  padding: 0px;
}



/* kea parrot tab */

.kea-aprrot-tab-section {
  padding: 80px;
}

.tabs {
  display: flex;
  margin-left: 60px;
}

.tab-button {
  padding: 18px 40px;
  cursor: pointer;
  border: none;
  display: flex;
  background-color: white;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: center;
  border-bottom: 0px solid rgb(56, 56, 56);
  min-width: 100px;
  font-family: "Funnel Display", sans-serif;

}

.tab-button img {
  margin-right: 10px;
}

.tab-button-kea {
  border: 2px solid #b462a600;
  border-bottom: 0px solid rgb(56, 56, 56);
  transition: ease-in-out .3s;

}

.tab-button-kea.active {
  border: 2px solid #B462A6;
  border-bottom: 0px solid rgb(56, 56, 56);
  background: linear-gradient(to bottom, #DCEAFF, #ffff);
  transition: ease-in-out .3s;
}

.tab-button-parrot {
  border: 2px solid #62ca5900;
  border-bottom: 0px solid rgb(56, 56, 56);

}

.tab-button-parrot.active {
  border: 2px solid #62ca59;
  border-bottom: 0px solid rgb(56, 56, 56);
  background: linear-gradient(to bottom, #FFF2D0, #ffff);
  transition: ease-in-out .3s;
}


.content {
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: space-between;

}



.tab-content {
  display: none;
  text-align: left;
}

.tab-para {
  margin-bottom: 60px;
}

.tab-content .tab-para,
.slider {
  transition: ease-in-out .3s;
  text-align: left;
  color: #120321;
}

.navigation-buttons {
  display: flex;
  justify-content: end;
  transition: ease-in-out .3s;
  z-index: 6;
  position: absolute;
  bottom: 3px;
  box-shadow: rgb(255, 255, 255) 2px 2px;
  right: 0;
  width: 115px;
}

.navigation-buttons button {
  background-color: rgba(255, 0, 0, 0);
  border: none;
  transition: ease-in-out .3s;
  padding: 0px 4px;
}

.navigation-buttons button div {
  background-color: #4B006E;
  transition: ease-in-out .3s;
  width: 44px;
  height: 44px;
}

.navigation-buttons button div svg {
  background-color: #4B006E;
  border: none;
  transition: ease-in-out .3s;
}

button:hover .button {
  background-color: #F6E2FF;
  border: 1px solid #F6E2FF;
}

button:hover div svg {
  background-color: #F6E2FF;
}

button:hover svg {
  fill: #4B006E !important;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  transition: ease-in-out .3s;

  width: 100%;

}

.tab-inside-slider h2 {
  margin: 24px 0px;
}

.tab-inside-slider .main-paragraph {
  width: 80%;
}

#tab-1 {
  border: 2px solid #B462A6;
  border-radius: 20px;
  background: linear-gradient(to bottom, #DCEAFF, #DCEAFF, #ffff, #ffff);
  /* transition: ease-in-out .3s; */


}

#tab-2 {
  border: 2px solid #62ca59;
  border-radius: 20px;
  background: linear-gradient(to bottom, #FFF2D0, #FFF2D0, #ffff, #ffff);
  /* transition: ease-in-out .3s; */


}

.border-asset-slider-top-bottom {
  position: absolute;
  top: 0;
  margin: auto;
  left: 0%;
  right: 0%;
  width: 80%;
  height: 100%;
  z-index: 4;
}

.border-asset-slider-left {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 5;
}

.border-asset-slider-right {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: 5;
}

.tab-content .content,
.slider {
  transition: ease-in-out .3s;
  padding: 60px;
  padding-bottom: 0;
}

.slider {
  position: relative;
  /* border: 2px solid rgba(163, 157, 157, 0.534); */
  padding: 0;
  background-color: #fff;
  margin-top: 60px;
  margin-right: 60px;
  border-radius: 40px;
  /* transition: ease-in-out .3s; */
  animation: fade 0.6s ease-in-out;
}

.slides {
  display: none;
  /* border: 2px solid #B3B3B3; */
  border-radius: 40px;
  padding: 60px;

  animation: fade ease-in-out;
  z-index: 6;
  position: sticky;

}

.slides.active {
  display: block;
}


/* .fade {
  animation: fade 0.6s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.9;
  }

  to {
    opacity: 1;
  }
} */

.slides.fade:not(.show) {
  opacity: 1;
}

.indicators {
  text-align: center;
  margin-top: 15px;
}

.indicator {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.indicator.active {
  background-color: #666;
}

.tab-content-button-div {
  padding: 60px;
}

.tab-content-button-div .button svg {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.24);
  padding: 10px 7px;
  border-radius: 50%;
}

.tab-content-button-div .button:hover svg {
  background-color: #4B006E !important;
}


/* speak data section */

.data-speak-section {
  padding: 80px;
  padding-bottom: 80px;
}


.data-speaks-first {
  margin-top: 40px;
  padding: 150px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #f6e2ff, #ffff);
}

.data-speaks-second {
  margin-top: 60px;
  padding: 80px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: linear-gradient(to bottom left, #4B006E, #F6E2FF);
  color: white;
}

.data-speaks-second .button {
  margin-top: 60px;
  margin-bottom: 60px;

}

.data-speak-second-image {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.data-speak-second-image img {
  margin-top: 80px;
}

/* about section */
/* about section */
.about-section {
  padding: 80px;
}

.image-box {

  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.bottom-text-video {
  width: 100%;
  margin-top: -20px;
}

.top-radius-text-bundle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -100px;
  background-color: #ffffff00;
}

.absolute-button-div {
  position: absolute;
  bottom: 4px;
  right: 0;
}

.top-radius-text {
  border-end-start-radius: 30px;
  background-color: #ffffff;
  padding: 20px;
  /* height: 150px; */
  width: calc(100% - 120px);
  border-end-end-radius: 30px;
  z-index: 5;
  position: relative;
  padding-left: 0;
}

.about-heading-sub-heading-div {
  display: flex;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.we-love-converasation-h2,
.we-love-converasation-h1,
.about-paragraph {
  bottom: 0px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;

}

.about-paragraph {
  left: 0;
  width: 98%;
  text-decoration: line-through;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.about-paragraph.line-through {
  text-decoration-color: #333;
}

.we-love-converasation-h2 {
  width: 48%;
  margin: 0;
  color: #120321;
}

.we-love-converasation-h1 {
  bottom: 0px;
  color: #4B006E;
  right: 0%;
  bottom: 0px;
  margin: 0;
}

.we-love-conversation-h1-visible {
  opacity: 1;
}

.we-love-conversation-h1-invisible {
  opacity: 0;
}

.we-love-conversation-h2-visible {
  opacity: 1;
}

.we-love-conversation-h2-invisible {
  opacity: 0;
}

.top-right-radius {
  width: 100px;
  height: 100px;
  background-color: #6496f200;
  border-start-start-radius: 30px;
  box-shadow: -30px -30px 0 0 rgb(255, 255, 255);
}

.button-white-background {
  background-color: rgb(255, 255, 255);
  z-index: 5;
  padding: 10px;
  padding-bottom: 0;
  padding-right: 0;
  border-end-end-radius: 30px;
  border-start-start-radius: 30px;
}

.button-white-background {

  box-shadow: #ffffff 2px 2px 2px;

}

.div-button-combined {
  display: flex;
  align-items: end;

}

.tall-border-radius-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 40px;
  background-color: #4b006e00;
  border-start-start-radius: 30px;
  border-start-end-radius: 30px;
  box-shadow: -10px -10px 0 0 rgb(255, 255, 255);
}

.tall-border-radius-bottom {
  box-shadow: 1px 25px 0 0 rgb(255, 255, 255);
  width: 20%;
  margin-left: 80%;

  height: 100px;
  background-color: #4b006e00;
  border-end-end-radius: 30px;
}

.border-radius {
  width: 80px;
  height: 45px;
  background-color: rgba(0, 0, 255, 0);
  box-shadow: 10px 17px 0 0 rgb(255, 255, 255);
  border-end-end-radius: 30px;

}

/* about section */
/* about section */

/* insight section */
.insight-section {
  padding: 60px 80px 80px;
}

.insight-section h1 {

  color: #120321;
}


.insight-items {
  margin-top: 60px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr repeat(1, 40%);
  ;
}

.insight-first {
  border-radius: 20px;
  padding: 120px !important;
  background-color: #F6E2FF;
}

.insight-second {
  padding: 120px !important;
  border-radius: 20px;
  background-color: #F6E2FF;
}

.insight-third {
  padding: 120px !important;
  border-radius: 20px;
  background-color: #F6E2FF;
}

.insight-fourth {
  padding: 120px !important;
  border-radius: 20px;
  background-color: #F6E2FF;
}






/* Footer */
.footer {
  background: linear-gradient(to bottom right, #4B006E, #F6E2FF);
  color: white;

}

.footer-about-contact p {
  margin-bottom: 20px;
}

.footer-top {
  padding: 80px;
}

.footer-about-contact-subscribe {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: baseline;
  gap: 120px;
}

.social-icon {
  display: flex;
}

.social-icon img {
  margin-right: 40px;
}

.footer-subscribe h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.subscribe-input {
  position: relative;
  display: flex;
  background: #fff;
  width: 100%;
  justify-content: space-between;
  border-radius: 30px;
}

.subscribe-input p {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  border-radius: 50px;
}

.subscribe-input input {
  font-family: "Funnel Display", sans-serif;
  background-color: white;
  padding: 20px;
  border: none;
  border-radius: 50px;

}

.subscribe-input .wpcf7-spinner {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0%, -50%);
  margin: 0px 7px;
}

input:focus {
  border: none;
  outline: none;
}

.subscribe-input .subscribe {
  color: white;
  background-color: #4B006E;
  padding: 15px 40px 15px 40px;
  border: none;
  border-radius: 50px;
}

.address-quick-links-footer {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr 1fr 60px 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 20px;
}





.address-quick-links-footer-footer {
  display: block;

  grid-template-columns: 30% 70%;
  justify-content: space-between;
  gap: 20px;
}

.contact-social p,
.contact-social div {
  margin-bottom: 20px;
}

.contact-social a {
  color: #fff;
}

.quick-links {
  display: grid;
  margin-top: 60px;
  /* grid-template-columns: 2fr 60px 1fr 1fr 1fr 1fr; */
  grid-template-columns: max-content 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-address {
  margin-top: 60px;
}

.addresses-top {
  display: none;
}

.addresses {

  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px; */
  display: flex;
  gap: 20px;
  flex-direction: column;
}



.address h3,
.address p {
  margin-top: 0px;
  margin-bottom: 10px;
}

.address h3 {
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.line {
  height: 60%;
  width: 2px;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
}


.footer-bottom {
  background-color: #4B006E;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-links {
  color: white !important;
  display: block;
}

.footer-copyright-terms-divider {
  margin-right: 5px;
}

.footer-bottom p {
  display: flex;
  align-items: center;
}

.footer-bottom a {
  margin-left: 0px;
}

.line-break {
  display: none;

}

.copyright-terms {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.copyright-terms .copyrightTops {
  display: flex;
}

.terms-condition {
  margin: 5px 0 5px 0;
}

.grapdesTag {
  font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
}


/*  */
/*  */
.bottom-sticky-contact-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 200;

}

/*  */
/*  */

.what-we-believe-card-wrap {
  position: relative;
}

.what-we-believe-button-parent {
  margin-top: 0px;
  position: absolute;
  bottom: -1px;
  z-index: 9;
  width: 100%;
}

.first-shadow {
  margin-bottom: 0;
}

.radius-shadow {
  margin-bottom: 0px;
}

.solution-menus a {
  position: relative;
  z-index: 5;
}

.solution-menus.active .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu {
  opacity: 0;
  visibility: hidden;
  background-color: white;
  backdrop-filter: blur(15px);
  position: absolute;
  left: 0;
  top: 0px;
  right: 0px;
  width: auto;
  border-radius: 20px;
  display: grid;
  /* grid-template-columns: repeat(3, max-content); */
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);
  padding: 0px 20px;
}

.sub-menu li:last-child {
  margin-right: 0 !important;
}

.sub-menu li:hover,
.sub-menu li a:hover {
  color: #000 !important;
}

.sub-menu .sol-child {
  border-radius: 25px;
  margin-top: 55px;
  margin-bottom: 20px;
  /* display: none; */
  background-color: rgb(255, 255, 255);
  width: 10vw;
  min-width: 200px;
  /* min-height: 12vw; */
  position: relative;
}

.sub-menu .sol-child .solution-child-menu {
  background-image: url(./images/purplescape_asset_outline_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 189px;
  max-height: 189px;
  padding: 18px 25px 0px 18px;
  position: relative;
  z-index: 9;
}

.sub-menu .sol-child .solution-child-menu a {
  position: relative;
  top: -50px;
  padding-top: 100px;
  width: 190px;
}

.sub-menu .sol-child .solution-child-menu::after {
  position: absolute;
  content: "";
  background-image: url(./images/arrow-white.svg);
  width: 30px;
  height: 30px;
  background-color: #4B006E;
  background-size: 14px;
  background-repeat: no-repeat;
  bottom: 1px;
  right: 0;
  border-radius: 50%;
  background-position: 50%;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    /* Bottom shadow */
    0 -2px 5px rgba(128, 128, 128, 0.2),
    /* Top shadow */
    2px 0 5px rgba(128, 128, 128, 0.2),
    /* Right shadow */
    -2px 0 5px rgba(128, 128, 128, 0.2);
}

.sub-menu .sol-child .solution-child-menu:hover::after {
  background-image: url(./images/arrow-lavendar.svg);
  transition: all 0.3s ease-in-out;
  background-color: #F6E2FF;
}

.sub-menu .sol-child .solution-child-menu::before {
  content: '';
  position: absolute;
  width: 98%;
  height: 150px;
  top: 2px;
  left: 2px;
  opacity: 0;
  z-index: 0;
  border-radius: 17px;
}

.sub-menu .sol-child.sol-kea-child .solution-child-menu::before {
  background: linear-gradient(180deg, #DCEAFF 0%, #ffffff 95.21%);
}

.sub-menu .sol-child.sol-parrot-child .solution-child-menu::before {
  background: linear-gradient(180deg, #FFF2D0 0%, #FFF 95.21%);
}

.sub-menu .sol-child.sol-service-child {
  display: none;
}

.sub-menu .sol-child.sol-service-child .solution-child-menu::before {
  background: linear-gradient(180deg, #F9EBFF 0%, #FFF 95.21%);
}

.sub-menu .sol-child .solution-child-menu:hover::before {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.sub-menu .sol-child .solution-child-menu-top {
  display: flex;
  font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 170px;
  position: relative;
}

.sub-menu .sol-child .menu-item-description {
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
  max-width: 170px;
  display: inline-block;
  position: relative;
  top: -55px;
  max-height: 110px;
  overflow: hidden;
}

.hide-desk {
  display: none;
}

.home-extra-mobile-btn {
  display: none;
}

.slider-image-parent img {
  width: 100%;
}

.dark-light-icon {
  fill: #4B006E;
  transition: linear 0.3s;
}

.light-button:hover .dark-light-icon {
  transform: rotate(180deg);
  transition: linear 0.3s;
}

/* aboutus start */

.banner-section {
  padding: 80px;
  padding-right: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0px;
}

.banner-section .first-section-image-div {
  align-items: start;
  justify-content: center;

}

.banner-section .first-section-image-div img {
  width: 100%;
  border-radius: 30px 0px 0px 30px;
  /* position: relative; */
}

.about-client-sec .marquee__group {
  gap: 20px;
}

.about-client-sec .home-logo-sec {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 15px;
  max-width: 340px;
  height: 210px;
  gap: 10px;
}

.about-client-sec img.logo-slider-image {
  margin: auto 0;
  width: 80%;
}

.about-client-sec h4 {

  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
}

.trust-us-section.about-client-sec {
  padding-bottom: 80px;
}

.trust-us-section.about-client-sec h3 {
  padding-bottom: 20px;
}

.about-client-sec .trust-us-heading-parent h6 {
  padding: 0px 80px 40px;
  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.about-our-purpose {
  padding: 80px;
  padding-top: 0px;
}

.about-our-purpose h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
}

.about-our-purpose img {
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.abt-mission {
  padding: 80px;
}

.mission-vision-section .mission-vision-wrap .mission-vision-content {
  background: linear-gradient(#F6E2FF, #ffff);
  border-radius: 20px;
}

.mission-vision-section .mission-vision-wrap {
  gap: 60px;
}

.our-mission-sec .panel-grid-cell {
  display: grid;
  grid-template-columns: max-content auto;
}

.our-mission-sec .panel-grid-cell .panel-first-child {
  margin-bottom: 0px !important;
}

.our-mission-sec .panel-grid-cell .so-widget-sow-image {
  background-color: white;
  padding: 15px;
  padding-top: 0;
  padding-left: 0;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
}

.our-mission-sec .panel-grid-cell .so-widget-sow-image::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -50px;
  width: 50px;
  height: 40px;
  background-color: #12032100;
  border-top-left-radius: 20px;
  box-shadow: -8px -8px rgb(255, 255, 255);
}

.our-mission-sec .panel-grid-cell .sow-image-container {
  background-color: #4B006E;
  padding: 15px;
  border-radius: 20px;
}

.our-mission-sec .panel-grid-cell .panel-last-child {
  position: relative;
  padding: 20px 23px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.our-mission-sec .panel-grid-cell .panel-last-child h3 {
  font-weight: 700;
  margin-bottom: 0px;
}

.mission-vision-section .mission-vision-content.panel-cell-style .panel-last-child,
.mission-vision-section .mission-vision-content.panel-cell-style .panel-first-child {
  margin-bottom: 10px !important;
}

.mission-vision-section .mission-vision-content .main-paragraph {
  position: relative;
  padding: 20px;
  padding-top: 0px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.mission-vision-section .mission-vision-content .main-paragraph::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 50px;
  height: 40px;
  background-color: #12032100;
  border-top-left-radius: 20px;
  box-shadow: -8px -8px rgb(255, 255, 255);
}

.about-great-wrapper .about-great-inner .panel-first-child {
  position: absolute;
  width: 100%;
}

.about-great-wrapper .about-great-inner .abt-great-sec-title {
  display: grid;
  align-items: start;
  grid-template-columns: 70% auto;
}

.about-great-wrapper .about-great-inner .abt-great-sec-title h2 {
  padding-right: 25px;
  padding-bottom: 25px;
  background-color: white;
  border-bottom-right-radius: 40px;
  margin: 0;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
  position: relative;
}

.about-great-wrapper .about-great-inner .abt-great-sec-title h2::before {
  position: absolute;
  content: "";
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
  right: -100px;
}

.about-great-wrapper .about-great-inner .abt-great-sec-title h2::after {
  position: absolute;
  content: "";
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
  bottom: -60px;
  left: 0;
}

.love-econversion.about-great-wrapper .sow-image-container img {
  margin-top: 0px;
}

.abt-predict-wapper {
  padding: 0px 80px;
}

.abt-predict-sec {
  border-radius: 40px;
  height: 40vw;
  min-height: 500px;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.abt-predict-sec .panel-grid-cell:nth-child(1) {
  position: absolute;
  top: -1px;
  left: 0px;
  min-width: fit-content;
}

.abt-predict-sec .panel-grid-cell:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.abt-predict-sec .abt-predict-left {
  display: grid;
  align-items: start;
  grid-template-columns: 58% auto;
}

.abt-predict-sec .abt-predict-left h2 {
  padding-right: 25px;
  padding-bottom: 25px;
  background-color: white;
  border-bottom-right-radius: 40px;
  margin: 0;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  position: relative;
  font-weight: 600;
}

.abt-predict-sec .abt-predict-left h2::before {
  position: absolute;
  content: "";
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
  right: -100px;
}

.abt-predict-sec .abt-predict-left h2::after {
  position: absolute;
  content: "";
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
  bottom: -60px;
  left: 0;
}

.abt-predict-sec .abt-predict-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: white;
  padding-left: 25px;
  padding-top: 25px;
  border-top-left-radius: 40px;
  max-width: 760px;
  position: relative;
}

.abt-predict-sec .abt-predict-right::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 60px;
  background-color: #4e465500;
  border-bottom-right-radius: 40px;
  box-shadow: 15px 15px rgb(255, 255, 255);
  right: 0;
  top: -60px;
}

.abt-predict-sec .abt-predict-right::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 60px;
  background-color: #4e465500;
  border-bottom-right-radius: 40px;
  box-shadow: 15px 15px rgb(255, 255, 255);
  bottom: 0px;
  left: -100px;
}

/* aboutus end */

.banner-button .white-purple-arrow {
  width: 34px;
  height: 34px;
  transform: rotate(90deg);
}

.banner-button .button:hover .white-purple-arrow {
  fill: #4B006E;
}

.new-common-btn .ow-icon-placement-right,
.light-dark-both-btn .ow-icon-placement-right {
  background-color: #4B006E !important;
  border-radius: 30px !important;
  padding: 8px 20px 10px 18px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white !important;
  border: 1px solid #4B006E !important;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2), 0 -2px 5px rgba(128, 128, 128, 0.2), 2px 0 5px rgba(128, 128, 128, 0.2), -2px 0 5px rgba(128, 128, 128, 0.2);
  max-width: max-content;
  line-height: 24px !important;
}

.new-common-btn a .sow-icon-image,
.light-dark-both-btn a .sow-icon-image {
  width: 32px !important;
  background-repeat: no-repeat;
  background-color: #ffffff3d;
  height: 32px !important;
  border-radius: 50%;
  padding: 10px;
  background-size: 16px !important;
  background-position: 50%;
}

.new-common-btn a:hover .sow-icon-image,
.light-dark-both-btn a:hover .sow-icon-image {
  transition: ease-in-out .3s;
  background-color: #4B006E;
}

.new-common-btn .sowb-button.ow-icon-placement-right span,
.light-dark-both-btn .sowb-button.ow-icon-placement-right span {
  align-items: center !important;
}

.new-common-btn .sowb-button.ow-icon-placement-right:hover,
.light-dark-both-btn .sowb-button.ow-icon-placement-right:hover {
  background-color: #F6E2FF !important;
  border: 1px solid white !important;
  color: #4B006E !important;
  transition: ease-in-out .3s;
}

.new-common-btn .sowb-button.ow-icon-placement-right:hover span,
.light-dark-both-btn .sowb-button.ow-icon-placement-right:hover span {
  color: #4B006E !important;
}

.our-mission-sec .so-panel.widget_sow-image {
  display: none;
}

.our-mission-sec .so-panel.widget_sow-image.panel-first-child {
  display: block;
}

.abt-mission .about-mission-wrap {
  gap: 60px;
}


/* our partner start */
.our-partner-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}

/* our partner end */
/* terms & policy start */

.basic-banner .top-heading-banner {
  margin-bottom: 60px;
}

.basic-banner {
  padding: 80px;
  padding-right: 80px;
  padding-bottom: 20px;
  display: block;
}

.basic-page-content .privacy-policy-texts {
  padding: 80px;
  padding-top: 0px;
}

.term-policy {
  padding: 80px;
  padding-top: 0px;
}

.term-policy h3 {
  font-weight: 600;
  font-size: calc(22px + (34.0 - 22) * ((100vw - 1001px) / (2200 - 1001)));
}

.term-policy a {
  color: #4B006E;
}

/* terms & policy end */


/* our team start */
/* key team section */
.our-team-content {
  padding: 80px;
}

.our-team-content h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  color: #120321;
  margin-bottom: 40px;
  font-weight: 600;
}

.team-member-profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-member-profile-color-div {
  background: linear-gradient(to bottom, #f6e2ff, #f6e2ff, #ffff);
  padding: 20px;
  border-radius: 25px;
  position: relative;

}

.toggler-button {
  display: none;
}

.team-member-profile-description {

  background-color: white;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  min-height: 320px;
}

.our-team-social {
  margin-top: 20px;
  margin-bottom: 40px;
}

.profile-pic-div {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1203213f;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  transition: ease-in-out 0.4s;
}

.profile-pic-div .profile-picture {
  width: 100%;
  height: 100%;
}

.profile-pic-div .profile-picture img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
}

.team-member-profile-color-div:hover .profile-pic-div {
  transform: translate(0px, 300px) rotate(-15deg);
  z-index: 5;
}

.name-designation h3 {
  color: #4B006E;
  margin-bottom: 0;
  margin-top: 20px;
  height: 60px;
  font-weight: 500;
}

.name-designation h4 {
  color: #120321;
  margin-top: 0;

}

.name-designation h4 {
  /* font-size: calc(17px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500; */
}

.our-team-page-banner {
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}

.our-team-page-banner .first-section-image-div img {
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
}

.our-team-diverse {
  padding: 80px;
  padding-bottom: 45px;
}

.our-team-diverse-main {
  padding: 80px;
  border-radius: 20px;
  display: grid !important;
  grid-template-columns: 1.3fr 0.7fr !important;
  gap: 80px;
  background: linear-gradient(to bottom left, #4B006E, #F6E2FF);
  color: white;
  align-items: center;
}

.our-team-diverse-main>.panel-grid-cell:nth-child(1),
.our-team-diverse-main>.panel-grid-cell:nth-child(2) {
  min-width: inherit !IMPORTANT;
}

.our-team-icon-text-sec>.panel-grid-cell:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.our-team-icon-text {
  display: flex;
  padding: 20px;
  border-radius: 20px;
  align-items: center;
  background-color: white;
  justify-content: space-between;
}

.our-team-icon-text h4 {
  color: #120321;
  margin: 0;
  margin-left: 20px;
  font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.our-team-icon-text .widget_sow-image {
  margin-bottom: 0px !important;
}

.our-team-icon-text-sec .widget_siteorigin-panels-builder {
  margin-bottom: 0px !important;
}

.our-team-diverse-image img {
  width: 100%;
}

.our-team-diverse-main h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 40px;
  font-weight: 600;
}

/* our team end */

/* we-believe start */

.what-we-believe-top-sec {
  padding: 80px;
}

.what-we-believe-top-sec h2,
.what-we-believe-top-sec h1 {
  font-size: calc(46px + (76.0 - 46) * ((100vw - 1001px) / (2200 - 1001)));
  color: #120321;
  margin-bottom: 40px;
}

.what-we-believe-top-sec h1 {
  margin-bottom: 26px;
}

.what-we-believe-top-sec-img img {
  width: 100%;
  border-radius: 40px;
  margin-top: 90px;
}

.what-we-believe-top-two-main {
  gap: 80px;
}

/* we-believe end */

/* kea home start */

/* eco system section */
.kea-page-tab-sec {
  display: block !important;
}

.eco-system-section {
  padding: 80px;
  padding-bottom: 0px;
}

.eco-system-tab-container {
  background: radial-gradient(#DCEAFF, #DCEAFF, #e5eefc, #eff3fa);
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 40px;
}

.simple-work-title-assets {
  position: absolute;
  top: 0;
  left: 0;
}

.title-right-asset {
  display: grid;
  align-items: start;
  grid-template-columns: max-content max-content;
}

.title-right-asset h2,
.title-right-asset h1 {
  padding-right: 25px;
  padding-bottom: 25px;
  background-color: white;
  border-bottom-right-radius: 40px;
  margin: 0;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
}

.simple-work-right-asset,
.simple-work-bottom-asset {
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
}

.top-title-right-asset {
  display: flex;

}

.top-title-right-asset h2 {
  padding: 0 25px 25px 0;
  background-color: white;
  border-bottom-right-radius: 40px;

}

.tab-items {
  padding: 40px;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  align-items: center;

}

.tab-button1 {
  font-family: "Funnel Display", sans-serif;
}

.tab-buttons-contents {
  z-index: 1;
}

.horizontal-line {
  position: absolute;
  height: 88%;
  bottom: 0px;
  left: 56px;
  z-index: 0;
  width: 5px;
  background-color: white;
}

.tab-button-content-pointer svg {
  margin-right: 15px;
}

.button-content-icon-heading img {
  margin-right: 20px;
}

.button-content-icon-heading svg {
  margin-right: 20px;
}

.tab-button-content-pointer,
.button-content-icon-heading {
  display: flex;
  align-items: center;
}

.tab-button1 {
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  background-color: white;
}

.tab-button1 h3,
.button-content-icon-heading h2 {

  margin: 0;
}

.button-content-icon-heading {
  margin: 0;
  margin-bottom: 20px;
}

.button-content {
  margin-left: 55px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}


.tab-image-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.tab-image-content-mobile {
  display: none;
}

.tab-image-content img {
  width: auto;
  height: 25vw;

}

.tab-image-content .image4 {
  width: auto;
  height: 30vw;

}

.tab-button-content {

  margin-bottom: 20px;
}

.tab-disappear .button-content {
  display: none;
  animation: tab-content 2s;

}

.tab-appear .button-content {
  display: flex;
  transition: linear 0.8s;
  animation: tab-content 1s;
}


@keyframes tab-content {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.tab-appear .tab-button1 {
  display: flex;
  transition: linear 0.3s;
  box-shadow: #12032156 2px 2px 10px;
  color: #3B485D;
}


/* css logic for the tab button animation */
/* css logic for the tab button animation */

.tab1-active,
.tab2-active,
.tab3-active,
.tab4-active {
  z-index: 1;
  position: relative;
}

.tab-button-0 {
  opacity: 0;
  z-index: 0;
}



.absolute-button-1,
.absolute-button-2,
.absolute-button-3,
.absolute-button-4 {
  position: absolute;

  top: 120px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab1-active.absolute-button-1 {
  position: absolute;
  top: 120px;
  transition: ease-in-out 0.3s;
}

.tab1-active.absolute-button-2 {
  position: absolute;
  top: 434px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab1-active.absolute-button-3 {
  position: absolute;
  top: 496px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab1-active.absolute-button-4 {
  position: absolute;
  top: 558px;
  left: 40px;
  transition: ease-in-out 0.3s;
}


.tab2-active.absolute-button-2 {
  position: absolute;
  top: 182px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab2-active.absolute-button-3 {
  position: absolute;
  top: 496px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab2-active.absolute-button-4 {
  position: absolute;
  top: 558px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab3-active.absolute-button-2 {
  position: absolute;
  top: 182px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab3-active.absolute-button-3 {
  position: absolute;
  top: 244px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab3-active.absolute-button-4 {
  position: absolute;
  top: 558px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab4-active.absolute-button-2 {
  position: absolute;
  top: 182px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab4-active.absolute-button-3 {
  position: absolute;
  top: 244px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

.tab4-active.absolute-button-4 {
  position: absolute;
  top: 306px;
  left: 40px;
  transition: ease-in-out 0.3s;
}

/* css logic for the tab button animation */
/* css logic for the tab button animation */


.tab-appear h3 {
  font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.tab-disappear h3 {
  font-size: calc(16px + (22.0 - 16) * ((100vw - 1001px) / (2200 - 1001)));
  color: #BAC3D2;
}

.image-appear {
  display: block;
}

.image-disappear {
  display: none;

}

/* .tab2.tab-disappear{
  transform: translate(0px, 0px);
  transition: linear 0.5s;
}
.tab2.tab-appear{
  transform: translate(0px, 0px);
  transition: linear 0.5s;
} */


/* eco system section */

/* first section start */
.first-section-kea {
  padding: 80px;
  padding-bottom: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.trademark {
  font-size: 26px;

  vertical-align: super;
}

.nowrap {
  white-space: nowrap;
}


.top-arrow-after-heading {
  margin-top: 40px;
  display: block;
}

.top-arrow-after-heading .button {
  transform: rotate(90deg);
}

.top-arrow-after-heading .button:hover .white-purple-arrow {
  fill: #4B006E;
}

.first-section-kea-image-div {
  overflow: hidden;
  width: 100%;
  display: flex;
  height: 80%;
  align-items: start;
  justify-content: center;
  min-height: 660px;
}


.parent-cards-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(390px);
}

.parent-cards,
.parent-cards2 {
  width: calc(100vw + 900px);

  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-outer,
.card-outer2 {
  padding: 25px;
  padding-right: 0;
  width: 220px;
  min-width: 260px;
  text-align: center;
}

.parent-cards-parent {
  margin-bottom: -113px;
}

.parent-cards-parent2 {
  margin-top: -90px;
}

.card-outer2 .card-keaHome {
  transform: translate(135px);
}

.card-keaHome {
  position: relative;
  margin: 0 auto;
  background-color: #DCEAFF;
  border-radius: 15px;
  height: 150px;
  padding: 20px;
  width: 240px;
  transition: all 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.card-keaHome:before,
.card-keaHome:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}



.card-keaHome:before {
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  transform: rotate(60deg);
  z-index: -1;
  /* transition: ease 0.5s; */
}

.card-keaHome:after {
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  transform: rotate(-60deg);
  z-index: -1;
  /* transition: ease 0.5s; */
}

.card-keaHome {
  opacity: 0.2;
}

.active-card .card-keaHome {
  opacity: 1;
}

.card-keaHome svg,
.card-keaHome img,
.card-keaHome h4 {
  margin: 0px;
  opacity: 0;
  transition: ease 0.5s;
}

.card-keaHome h4 {
  margin-top: 12px;
}

.active-card svg,
.active-card img,
.active-card h4 {
  opacity: 1;
  transition: ease 0.5s;
}

svg {
  overflow: visible;
}

.slider-kea-logo-outer-div {

  width: 100%;
  z-index: 10;
  background-color: #362d5100;

}



.slider-kea-logo-div {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;

}

.first-slider-kea-logo-hidden {
  opacity: 0;
}

.first-slider-kea-logo {
  z-index: 5;
  transform: translate(20px, 30px);
  transition: 0.5s linear;
  width: 115px;
}

.kea-page-top-heading {
  width: 100%;
  margin-bottom: 0.83em;
}

/* first section start */

/* kea slider section start */

.kea-home-slider-sec .marquee__group {
  gap: 40px;
}

.kea-home-slider-sec {
  background: radial-gradient(90% 45% at 50% 60%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%)
}

.kea-home-slider-sec .home-logo-sec {
  min-width: 370px;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  flex-direction: column;
  border-radius: 30px;
  justify-content: space-between;
}

.kea-home-slider-sec .home-logo-sec:hover {
  transition: ease 0.5s;
  box-shadow: #3b485d63 1px 1px 20px 0px;
}

.kea-home-slider-sec img.logo-slider-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.kea-home-slider-sec .home-logo-sec h4 {
  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 0px;
}

.kea-home-slider-sec .home-logo-sec h4 b {
  font-weight: 700;
}

.page-template-kia_home .header-top-banner,
.page-template-kia_home .logo,
.page-template-kia_home .logins,
.FeatureKeaPage .header-top-banner,
.FeatureKeaPage .logo,
.FeatureKeaPage .logins {
  background-color: #DCEAFF;
}

.page-template-kia_home .header-top-banner::before,
.page-template-kia_home .header-top-banner::after,
.FeatureKeaPage .header-top-banner::before,
.FeatureKeaPage .header-top-banner::after {
  background: linear-gradient(to bottom, #DCEAFF, #DCEAFF, rgba(255, 255, 255, 0));
}

.page-template-kia_home .logo::after,
.FeatureKeaPage .logo::after {
  box-shadow: -10px -15px 0 0 #DCEAFF;
}

.page-template-kia_home .links-div,
.FeatureKeaPage .links-div {
  box-shadow: -15px -25px 0 0 #DCEAFF, 15px -25px 0 0 #DCEAFF;
}

.page-template-kia_home .logins::after,
.FeatureKeaPage .logins::after {
  box-shadow: 10px -15px 0 0 #DCEAFF;
}

.page-template-kia_home .light-button p,
.FeatureKeaPage .light-button p {
  color: #3B485D;
}

.page-template-kia_home .dark-light-icon,
.FeatureKeaPage .dark-light-icon {
  fill: #3B485D;
}

/* kea slider section end */

/* kea home end */

/* kea video start */
.kea-studies-sec {
  padding: 80px;
  /* display: none; */
}

.kea-studies-main {
  display: grid !important;
  grid-template-columns: 1.1fr .9fr !important;
  align-items: end !important;
}

.kea-studies-main>.panel-grid-cell:nth-child(1),
.kea-studies-main>.panel-grid-cell:nth-child(2) {
  width: 100% !important;
  min-width: 100%;
}

.kea-studies-left-sec .kea-mobile-image img {
  width: 70%;
  margin-bottom: -240px;
}

.kea-virtual-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background-color: #DCEAFF;
  padding-left: 60px;
  padding-right: 0px;
  padding-top: 320px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin: 0;
}

.kea-video-sec-title h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  color: #120321;
  margin-bottom: 0;
  font-weight: 600;
}

.kea-home-video-content-main-box {
  padding: 60px;
  border-radius: 40px;
  border-top-left-radius: 0;
  background: linear-gradient(to bottom, #DCEAFF, #dceaffcc, #dceaffa0, #ffff);
  margin-top: -30px;
}

.kea-studies-right-sec {
  padding: 20px;
  padding-right: 0;
  background-color: white;
  border-radius: 50px;
  position: relative;
}

.kea-studies-right-sec::before {
  content: "";
  position: absolute;
  height: 50px;
  background-color: #4e465500;
  border-bottom-right-radius: 50px;
  box-shadow: 38px 3px #ddeaff;
  left: -25px;
  bottom: 25px;
  transform: rotate(90deg);
  width: 100px;
}

.kea-employee {
  background-color: #362D51;
  padding: 40px;
  position: relative;
  border-radius: 40px;
}

.kea-employee-title h2 {
  color: white;
}

.kea-employee .widget_sow-button.panel-last-child {
  position: absolute;
  bottom: 0px;
  right: 0;
}

.kea-employee .kea-video-sec-btn {
  background-color: rgb(255, 255, 255);
  z-index: 5;
  padding: 10px;
  padding-bottom: 0;
  padding-right: 0;
  border-end-end-radius: 30px;
  border-start-start-radius: 30px;
  padding-right: 0 !important;
  position: relative;
}

.kea-employee .kea-video-sec-btn::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 70px;
  background-color: #4e465500;
  border-bottom-right-radius: 30px;
  box-shadow: 28px 2px rgb(255, 255, 255);
  right: 0px;
  top: -70px;
}

.kea-employee .kea-video-sec-btn::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 40px;
  background-color: #4e465500;
  border-bottom-right-radius: 30px;
  box-shadow: 6px 12px rgb(255, 255, 255);
  left: -79px;
  bottom: 0;
}

.kea-employee-bottom-title {
  padding-bottom: 10px;
  width: 94%;
}

.kea-circle-image {
  margin-top: -12px;
}

.kea-parrot-video video {
  width: 100%;
  border-radius: 40px;
}

.kea-parrot-video {
  margin-top: 40px;
}

.kea-video-text-box {
  gap: 80px;
}

.kea-title-mobile-show {
  display: none;
}

.kea-loading-img-main .widget_sow-image:nth-child(2) {
  display: none;
}

/* keo video end */


/* parrot page start */

.page-template-parrot_home .header-top-banner,
.page-template-parrot_home .logo,
.page-template-parrot_home .logins,
.FeatureParrotPage .header-top-banner,
.FeatureParrotPage .logo,
.FeatureParrotPage .logins {
  background-color: #FFF2D0;
}

.page-template-parrot_home .header-top-banner::before,
.page-template-parrot_home .header-top-banner::after,
.FeatureParrotPage .header-top-banner::before,
.FeatureParrotPage .header-top-banner::after {
  background: linear-gradient(to bottom, #FFF2D0, #FFF2D0, rgba(255, 255, 255, 0));
}

.page-template-parrot_home .logo::after,
.FeatureParrotPage .logo::after {
  box-shadow: -10px -15px 0 0 #FFF2D0;
}

.page-template-parrot_home .links-div,
.FeatureParrotPage .links-div {
  box-shadow: -15px -25px 0 0 #FFF2D0, 15px -25px 0 0 #FFF2D0;
}

.page-template-parrot_home .logins::after,
.FeatureParrotPage .logins::after {
  box-shadow: 10px -15px 0 0 #FFF2D0;
}

.page-template-parrot_home .light-button p,
.FeatureParrotPage .light-button p {
  color: #006849;
}

.page-template-parrot_home .dark-light-icon,
.FeatureParrotPage .dark-light-icon {
  fill: #006849;
}

.page-template-parrot_home .card-keaHome {
  background-color: #FFF2D0;
}

.page-template-parrot_home .kea-virtual-title {
  background-color: #FFF2D0;
}

.page-template-parrot_home .kea-home-video-content-main-box {
  background: linear-gradient(to bottom, #FFF2D0, #faf0d5ce, #fcf3dc8f, #ffff);
}

.page-template-parrot_home .kea-employee {
  background-color: #15A57A;
}

.page-template-parrot_home .kea-studies-right-sec::before {
  box-shadow: 38px 3px #FFF2D0;
}

.page-template-parrot_home .kea-home-slider-sec {
  background: radial-gradient(70% 50% at 50% 60%, #fff2d0 0%, rgba(255, 255, 255, 0.00) 100%);
}

.parrot-home-slider-sec {
  padding-top: 0px !important;
}

/* pafrrot page end */

/* contact us start */

/* first section */

.page-template-Contact {
  background: radial-gradient(circle at 72vw 12%, #F6E2FF 1%, white, white, white);
  transition: linear 0.3s;
}

.first-section-contactus {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  height: 95vh;
}

.first-section-contactus h1 {
  padding-top: 80px;
  padding-left: 80px;
  margin-bottom: 0.83em;
}

.first-section-map-div {
  padding: 80px;
  padding-bottom: 160px;
  display: flex;
  justify-content: center;
  position: relative;
  height: 35vw;
  /* min-height: 600px; */
}

.first-section-map-div .map-image {
  width: 80%;
  /* height: auto; */
  position: absolute;
}

.locations {
  /* z-index: 5; */
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(8, 1fr);

}

.location {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.location-3 {
  grid-column: 4;
  grid-row: 6;
}

.location-3 .location-inside {
  position: absolute;
  left: calc(5vw - 20px);
  top: calc(3vw - -120px);

}

.location-inside img {
  margin-left: 40px;
}

.location-text {
  padding: 10px 20px;
  border-radius: 25px;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.151);
  position: absolute;
  left: 20%;
  right: 20%;
  margin-inline: auto;
  width: fit-content;
}

.location-3 .location-text {
  left: auto;
  right: -40%;
}

.location-text h4 {
  margin: 0;
  text-wrap: nowrap;
}

.location-text p {
  margin-top: 0px;
  font-size: 0;
  margin: 0;
  transition: 0.5s linear;
}

.location-inside:hover .location-text p {
  margin: 0;
  margin-top: 20px;
  z-index: 5;
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001)));
  width: 180px;
}

.location-3 p {
  max-width: 150px !important;
}

.location:hover .location-inside {
  z-index: 5;
}

.location-1 {
  grid-column: 2;
  grid-row: 3;
}

.location-1 .location-inside {
  position: absolute;
  left: calc(2vw - 110px);
  top: calc(2vw - -50px);

}

.location-2 {
  grid-column: 3;
  grid-row: 4;
}

.location-2 .location-inside {
  position: absolute;
  left: calc(9.5vw - 50px);
  top: calc(4vw - -60px);
}

.location-4 {
  grid-column: 2;
  grid-row: 3;
}

.location-4 .location-inside {
  position: absolute;
  left: calc(13vw - 105px);
  top: calc(2vw - 25px);
}

.top-heading-contactus {
  font-size: calc(46px + (76.0 - 46) * ((100vw - 1001px) / (2200 - 1001)));
  margin-top: 0;
}

/* first section */

/* contact form start */
.contact-form-sec-main {
  padding: 80px;
  padding-top: 0;
  display: grid !important;
  grid-template-columns: 1.1fr .9fr !important;
  align-items: center !important;
}

.contact-form-sec-main>.panel-grid-cell:nth-child(2) {
  width: 100% !important;
  min-width: 100%;
  margin-left: -60px;
}

.contact-form-sec-main>.panel-grid-cell:nth-child(1) {
  width: calc(100% + 50px) !important;
  margin-right: -100px;
  padding: 40px;
  background-color: #F6E2FF;
  background: linear-gradient(#F6E2FF, #F6E2FF, white);
  border-radius: 35px;
}

.contact-form-sec-main .contact-form-sec-left-main {
  padding-right: 150px;
}

.contact-form-sec-main .contact-details-main {
  padding: 40px;
  padding-right: 0px;
  background-color: #ffffff;
  border-radius: 40px;
  background: linear-gradient(to right, white, white, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  backdrop-filter: blur(20px);
  position: relative;
}

.contact-form-sec-main .contact-details-main::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 80px;
  top: -80px;
  left: 50px;
  background-color: #f6e2ff00;
  z-index: -1;
  box-shadow: #fffeff 0px 30px;
  border-bottom-right-radius: 30px;
}

.contact-form-sec-main .contact-details-main::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 80px;
  bottom: -80px;
  left: 50px;
  background-color: #f6e2ff00;
  z-index: -1;
  box-shadow: #fffeff 0px -30px;
  border-top-right-radius: 30px;
}

.contact-form-sec-left-main h2 {
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 40px;
  border: 0;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
}

.contact-form textarea {
  font-size: 19px;
  border: none;
  outline: none;
  height: 140px;
  margin-bottom: 30px;
}

.contact-details h2 {
  margin-bottom: 30px;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 15px;
  color: #120321;
}

.contact-details p a {
  color: #120321;
}

.social-links {
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px;
}

.social-links li a {
  color: #4B006E;
  font-size: 22px;
}

.subit-btn {
  background-color: #4B006E;
  border-radius: 30px !important;
  padding: 5px !important;
  font-size: calc(14px + (20.0 - 14) * ((100vw - 1001px) / (2200 - 1001))) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: 1px solid #4B006E !important;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2), 0 -2px 5px rgba(128, 128, 128, 0.2), 2px 0 5px rgba(128, 128, 128, 0.2), -2px 0 5px rgba(128, 128, 128, 0.2);
  width: fit-content !important;
  position: relative;
  padding: 13px 21px !important;
  padding-right: 52px !important;
  margin-bottom: 0px !important;
}

.subit-btn-wrapper {
  position: relative;
  width: fit-content;
}

.subit-btn-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(./images/arrow-white.svg);
  width: 34px;
  height: 34px;
  background-color: #ffffff3d;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: 50%;
  top: 6px;
  right: 6px;
  z-index: 2;
}

.subit-btn:hover {
  background-color: #F6E2FF;
  border: 1px solid white !important;
  color: #4B006E !important;
  transition: ease-in-out .3s;
}

.subit-btn-wrapper:has(> input.subit-btn:hover)::before {
  background-color: #4B006E;
  transition: ease-in-out .3s;
}


/* contact form end */

/* contact-us page end ******** */


/* insight-all start page start ***********/

/* top banner start */
.insight-all-banner {
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 80px;
}

.banner-section.insight-all-banner .first-section-image-div {
  position: relative;
}

.insight-all-banner .tag-buttons-blog-title {
  position: absolute;
  bottom: 0;
  padding: 40px 60px;
  color: #fff;
}

.tag-buttons-blog-title {
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
}

.insight-all-banner .tag-buttons button {
  border-radius: 30px;
  background-color: #4b006e00;
  border: 1px solid white;
  padding: 5px 15px;
  font-size: 16px;
  color: white;
  margin-right: 15px;
  margin-bottom: 18px;
}

/* top banner end */

/* blog search section */
.blog-search-section {
  padding: 20px 80px 20px 80px;
  position: sticky;
  top: 80px;

}

.search-bar {
  transition: ease 0.3s;
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;

}

.search-bar input {
  border: none;
  margin-left: 40px;
  width: 80%;
  background-color: #e9e9e9;
  opacity: 0;
  transition: ease 0.3s;
  font-size: 14px;
}

.search-button {
  border: none;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  justify-content: space-between;
  border-radius: 35px;
  background-color: #4B006E;
  color: white;
  font-family: "Funnel Display", sans-serif;
  gap: 10px;
  transform: translateX(57px);
  transition: ease 0.3s;
}

.search-button p {
  padding-left: 10px;
  display: none;
  transition: ease 0.3s;
}

.search-button img {
  width: 35px;
}

.search-bar select {
  opacity: 0;
  border: none;
  outline: none;
  background-color: #e9e9e9;
  opacity: 0;
  transition: ease 0.3s;
  font-size: 13.33px;
}

.search-bar:hover {
  box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.171);
  background-color: #e9e9e9;
}

.search-bar:hover select {
  opacity: 1;
}

.search-bar:hover .blog-search-input {
  opacity: 1;
}

.search-bar:hover .search-button {
  transform: translateX(0);
}

.search-bar:hover .search-button p {
  display: block;
}

/* blog search section */
/* blog section */
.blogs-section {
  padding: 80px;
}


.all-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.blog-main-img {
  width: 100%;
  /* height: 300px; */
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.blog-button {
  background-color: transparent;
  color: #4B006E;
  border: 1px solid #4B006E;
  border-radius: 30px;
  padding: 5px 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Funnel Display", sans-serif;
}

.blog {
  background: linear-gradient(#F9EBFF, #F9EBFF00);
  border-radius: 30px;
  transition: ease 0.3s;
}

.blog:hover {
  background-color: #F9EBFF;
  box-shadow: 1px 1px 10px 1px #12032133;
}

.blog-content h2 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.horizontal-line-blog {
  width: 100%;
  margin: auto;
  height: 2px;
  background-color: #120321;
  margin-top: 20px;
}

.author-image-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 50px;
}

.author-image-name img {

  border-radius: 50px;
}

.author-image-name h4 {
  margin-bottom: 0px;
}

.read-time-published-date {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: #120321 !important;
}

.read-time-published-date p {

  color: #120321 !important;
}

.vertical-line {
  width: 2px;
  height: 20px;
  background-color: #120321;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  font-weight: 600;
}

.active-pagination {
  padding: 4px 14px;
  border-radius: 50px;
  background: linear-gradient(0.9turn, #4B006E, #4b006ed3, #F6E2FF);
  color: white;
}

/* blog section */
/* pagination start */
.pagination-blog {
  padding: 80px;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination-blog .page-numbers {
  color: #120321;
  font-weight: 600;
}

.pagination-blog .page-numbers.current {
  padding: 4px 14px;
  border-radius: 50px;
  background: linear-gradient(0.9turn, #4B006E, #4b006ed3, #F6E2FF);
  color: white;
}

/* pagination end */

/* insight-all page end ***********/

/* insight-items page start ***********/

/* blog title part */
.blog-title-part {
  padding: 80px;
  padding-top: 30px;
}

.blog-title-part h1 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.author-publish-date {
  display: flex;
  align-items: center;
  gap: 20px;
}

.first-vertical-line {
  display: block;
}

.publish-date-read-time {
  display: flex;
  gap: 18px;
  align-items: center;
}

.author-publish-date h4 {
  margin: 0;
  font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.author-publish-date img,
.author-image-name img {
  border-radius: 50px;
  min-width: 46px;
  max-width: 46px;
  height: 46px;
  object-fit: cover;
}

.share-button-author-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.heart-button {
  background-color: #F1D1FF;
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 5px;
  padding-left: 20px;
  color: #4B006E;
}

.share-button {
  background-color: #4B006E;
  padding: 8px 5px;
  padding-left: 15px;
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.share-buttons p {
  font-weight: 600;
}

.heart-button img {
  width: 60%;
}

.share-button img {
  width: 35%;
}

.get-in-touch {
  padding: 60px;
  padding-top: 50px;
  margin-top: 100px;
  border-radius: 30px;
  background: radial-gradient(145.95% 99.09% at 5.03% 11.71%, #F6E2FF 0%, #4B006E 100%);
  color: white;
}

.get-in-touch h2 {
  margin-bottom: 22px;
}

/* blog title part */
.first-details-blog {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
}

.first-details-blog .blog-detail-heading h3 {
  margin: 0;
  margin-bottom: 40px;
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.first-details-blog .blog-detail-heading h3 a {
  color: #120321;
}

.first-details-blog .blog-detail-heading h3 a:hover {
  color: #F6E2FF;
}

.first-details-blog .paragraph-blog-details h2 {
  margin-bottom: 24px;
}

.first-details-blog .paragraph-blog-details p {
  margin-bottom: 28px;
}


/* insight-blog-details start */
.insight-blog-details {
  padding: 40px 200px 40px 200px;
}

.insight-blog-main-img {
  width: 100%;
  border-radius: 20px;
}

/* insight-blog-details end */

/* insight-items page end **********/

/* faq page start *********/

.faq-first-section {
  padding: 80px;
}

.faq-first-section .top-heading {
  width: 70%;
  padding-bottom: 20px;
  margin-bottom: 36px;
}

.faq-accordion-section .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.faq-accordion-section .tab {
  padding: 10px 20px;
  border-radius: 50px;
  background: #F9F9F9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
}

.faq-accordion-section .tab h4 {
  margin: 0;
}


.faq-accordion-section .accordion-item {
  border-top: 1px solid #000000 !important;
  padding: 30px;
  position: relative;
}

.faq-accordion-section .accordion-item:last-child {
  border-bottom: 1px solid black;
}

.faq-accordion-section .accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-accordion-section .accordion-content {
  display: none;
  padding: 10px 0 0;
}


.faq-accordion-section .tabs {
  margin-left: 0;
  margin-bottom: 60px;
  gap: 25px;
}

.faq-accordion-section .tab {
  background: #fff;
  box-shadow: 1px 1px 10px 1px #12032133;
}

.faq-accordion-section .tab.active {
  background: #fff;
  border: none;
  color: #B462A6;
}

.faq-accordion-section .tab.active h4 {
  font-weight: 500;
}

.accordion-header.active {
  color: #B462A6;
}

.faq-accordion-section .icon svg {
  transition: all 0.3s ease;
}

.faq-accordion-section .active.icon svg {
  transform: rotate(180deg);
  fill: #B462A6;
}


/* menu */

/* .faq-menu-left {
  display: block;
  width: 100%;
}

.faq-menu-right {
  justify-content: center;
  width: auto;
  gap: 10px;
} */

/* menu */

/* faq page end *********/

/* careers page start *********/
.careers-page-banner {
  align-items: center;
}

.careers-page-banner h3 {
  margin-bottom: 23px;
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
}

.second-section-careers {
  display: grid;
  padding: 80px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.text-animation-section {
  background: linear-gradient(to bottom, #F6E2FF, #F6E2FF, #f6e2ff33);
  border-radius: 2000px;
  position: relative;
  height: 50vw;
  /* adjust based on your needs */
  overflow: hidden;
}

.text-block h3 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  color: #4B006E;
}

.text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-block h3 {
  opacity: 0;
  transform: translateY(20px);
}

/* Active text block */
.text-block.active {
  opacity: 1;
  pointer-events: auto;
}

/* Animate in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.second-section-careers .top-heading {
  font-weight: 600;
}

.second-section-careers h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
}

.career-slider-section {
  padding: 80px 0 80px 0;
  background: radial-gradient(50% 50% at 50% 50%, #F6E2FF 0%, rgba(255, 255, 255, 0.00) 100%);
  overflow: hidden;
}

.career-slider-section .title-scroll-arrows {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20vw;
  align-items: start;
  justify-content: space-between;
  padding: 0px 80px 80px 80px;
}

.career-slider-section .title-scroll-arrows h2 {
  margin-bottom: 0px;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
}

.navigation-slider-buttons button {
  background-color: rgba(255, 0, 0, 0);
  border: none;
  transition: ease-in-out .3s;
  padding: 0px 4px;
}

.navigation-slider-buttons .button img,
.navigation-slider-buttons button .white-purple-arrow {
  background-color: transparent;
}

.navigation-slider-buttons .button svg {
  fill: #fff;
}

.scroll-items {
  transition: transform 0.3s ease;
  margin-right: 0px;
}

.scroll-item {
  background-color: white;
  padding: 30px;
  width: 95% !important;
  /* margin-right: 40px;   */
  transition: transform 0.3s ease;
  border-radius: 30px;
  display: flex !important;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.scroll-item img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.image-name-role {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.name-role h3,
.name-role h4 {
  margin: 0;
  padding-bottom: 10px;
  padding-top: 2px;
}

.slick-track {
  padding: 20px;

}

.scroll-item:hover {
  transition: ease 0.5s;
  box-shadow: #3b485d63 1px 1px 20px 0px;
}

.career-faq-section {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.faq-first-section .career-faq-section .top-heading {
  width: auto;
}

.faq-accordion-section .career-faq-section .tabs {
  margin-bottom: 10px;
}

.form-career-section {
  padding: 80px;
  gap: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.career-contact-right {
  padding: 40px;
  background-color: #F6E2FF;
  background: linear-gradient(#F6E2FF, #F6E2FF, white);
  border-radius: 35px;
}

.form-career-section .career-contact-left {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
}

.career-contact-right h2 {
  margin-bottom: 40px;
}

.career-contact-right .contact-form input {
  width: 100%;
}

.custom-upload-wrapper .custom-upload-label {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 40px;
  border: 0;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #757575;
}

.custom-upload-wrapper .custom-upload-input {
  display: none;
}

.current-opening {
  padding: 80px;
}

.current-opening h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 36px;
}

.job-listing {
  margin-top: 80px;
  border-radius: 30px;
  padding: 200px 100px;
  text-align: center;
  background: linear-gradient(180deg, #F6E2FF 6.82%, rgba(246, 226, 255, 0.00) 99.93%);
}

/* careers page end *********/


/* success-kea page start *********/
.kea-success-heading .textwidget {
  padding: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.kea-success-heading .textwidget h1 {
  font-size: calc(46px + (76.0 - 46) * ((100vw - 1001px) / (2200 - 1001)));
  color: #120321;
  margin-bottom: 0px;
}

/* success-kea page end *********/

/* pricing page start *********/
.pricing-main-section {
  padding: 80px;
}

.pricing-main-section .top-heading {
  width: 70%;
}

.pricing-part {
  display: grid;
  grid-template-columns: 0.2fr 1.8fr;
  gap: 40px;
  margin-top: 80px;
}

.made-for-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.made-for-card h3 {
  margin-bottom: 10px;
}

.made-for-card h4 {
  margin-top: 25px;
  margin-bottom: 30px;
}

.made-for-card p {
  margin-bottom: 15px;
}

.tier-card {
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #DCEAFF 0%, #FFF 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  width: 90% !important;
}

.tier-card:hover {
  box-shadow: 1px 1px 12px 1px #12032154;
}

.tier-card h2 {
  padding-bottom: 25px;
  margin: 0;
}

.tier-card h4 {
  padding-bottom: 30px;
  margin: 0;
}

.check-mark {
  padding-bottom: 10px;
  font-weight: 600;
}

.price {
  display: flex;
  color: #B462A6;
  align-items: end;
  margin-top: 25px;
}

.pricing-card-demo-button {
  margin-top: 30px;
  visibility: hidden;
}

.tier-card:hover .pricing-card-demo-button {
  visibility: visible;
}

.tier-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding-top: 10px;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.tier-wrapper .slick-list {
  padding: 0 !important;
}

.pricing-get-touch .our-team-diverse-main {
  grid-template-columns: 1fr 1fr !important;
}

.pricing-get-touch .our-team-diverse-main p {
  margin-bottom: 22px;
}

.pricing-get-touch .our-team-diverse-image {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.pricing-get-touch {
  padding-top: 0px;
}

/* pricing page end *********/

/* feature-kea page start *********/
.feature-keaTop-sec .panel-grid {
  padding: 80px;
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 80px !important;
  padding-bottom: 0;
}

.feature-keaTop-sec .panel-grid-cell {
  width: 100% !important;
  min-width: 100%;
}

.feature-keaTop-sec .top-feature-img img {
  width: 70%;
  margin: auto;
}

.feature-keaTop-sec .top-heading {
  width: 100%;
}

.feature-kea-left-right-sec {
  padding: 80px;
  padding-top: 120px;
  background: radial-gradient(50% 50% at 50% 50%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%);
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}

.feature-kea-left-right-sec .panel-grid {
  margin-bottom: 0px !important;
}

.feature-kea-left-right-sec .panel-grid-cell,
.feat-kea-secure-grid .panel-grid-cell,
.feat-kea-justAsk-section .panel-grid-cell,
.how-keaParrotTop-grid .panel-grid-cell,
.how-keaParrot-RealTime-Main .panel-grid-cell {
  width: 100% !important;
  min-width: 100%;
}

.feature-kea-left-right-sec .feature-kea-left-right-video video,
.feature-kea-left-right-sec .feature-kea-left-right-video img {
  width: 80% !important;
  display: block;
  margin: auto;
  border-radius: 30px;
}

.feature-kea-left-right-sec .feature-kea-left-right-content h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 0.83em;
  font-weight: 600;
}

.feat-kea-secure-section {
  padding: 80px;
}

.feat-kea-secure-section .secure-heading h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 0.83em;
  font-weight: 600;
}

.feat-kea-secure-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 60px !important;
}

.feat-kea-secure-cards {
  padding: 60px;
  background: linear-gradient(180deg, #DCEAFF 0%, #FFF 115.21%);
  border-radius: 30px;
}

.feat-kea-secure-cards svg {
  width: clamp(100px, 20%, 20px);
  max-width: 70px;
  height: auto;
}

.feat-kea-secure-cards h2 {
  margin-bottom: 0.76em;
}

.feat-kea-justAsk-section .panel-grid {
  padding: 80px;
  padding-top: 120px;
  background: radial-gradient(50% 50% at 50% 50%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%);
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}

.feat-kea-justAsk-section .feat-kea-justAsk-contentBox h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 0.83em;
  font-weight: 600;
}

.feat-kea-justAsk-section .feat-kea-justAsk-img img {
  width: 80%;
  display: block;
  margin: auto;
  border-radius: 30px;
}

.text-centerBtn .ow-button-align-center {
  text-align: left !important;
}

/* feature-kea page end *********/


/* feature-parrot page start *********/

.FeatureParrotPage .feature-kea-left-right-sec,
.FeatureParrotPage .feat-kea-justAsk-section .panel-grid {
  background: radial-gradient(50% 50% at 50% 50%, #FFF2D0 0%, rgba(255, 255, 255, 0.00) 100%);
}

.FeatureParrotPage .feat-kea-secure-section {
  display: none !important;
}

.features-kea-parrot-channel-img .panel-grid-cell:first-child .panel-last-child {
  display: none;
}

.features-kea-parrot-channel-img .panel-grid-cell:first-child .panel-first-child {
  margin-bottom: 0px !important;
}

/* feature-parrot page end *********/


/*  how-parrot-work page start *********/

.how-keaParrotTop-header .textwidget {
  display: grid;
  grid-template-columns: auto max-content;
  gap: 15vw;
  align-items: end;
  margin-bottom: 80px;
}

.how-keaParrotTop-header h1,
.how-keaParrotTop-header h2 {
  max-width: 1500px;
  margin: 0;
}

.how-keaParrotTop-Section {
  padding: 80px;
}

.how-keaParrotTop-Section .panel-grid {
  margin-bottom: 0px !important;
}

.how-keaParrotTop-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 60px !important;
}

.how-keaParrotTop-grid .panel-grid-cell,
.how-keaParrot-RealTime-Main .panel-grid-cell {
  height: 100%;
}

.how-keaParrotTop-cards {
  background-color: #FFF2D1;
  padding: 40px;
  position: relative;
  border-radius: 30px;
}

.how-keaParrotTop-cards .so-panel {
  margin: 0 !important;
}

.how-keaParrotTop-cards img {
  width: 100%;
  border-radius: 30px;
  /* height: 250px !important; */
  object-fit: cover;
}

.how-keaParrotTop-cards .how-keaParrotTop-Content h3 {
  margin-top: 1.2em;
  margin-bottom: 1em;
}

.how-keaParrotTop-cards .how-keaParrotTop-Content p {
  width: 80%;
}

.position-button-div {
  position: absolute;
  right: 0;
  bottom: 0;
}

.position-button-div .textwidget {
  background-color: rgb(255, 255, 255);
  z-index: 5;
  padding: 10px;
  padding-bottom: 0;
  padding-right: 0;
  border-end-end-radius: 25px;
  border-start-start-radius: 25px;
  padding-right: 0 !important;
  position: relative;
}

.position-button-div .textwidget::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 70px;
  background-color: #4e465500;
  border-bottom-right-radius: 30px;
  box-shadow: 28px 2px rgb(255, 255, 255);
  right: 0px;
  top: -70px;
}

.position-button-div .textwidget::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 40px;
  background-color: #4e465500;
  border-bottom-right-radius: 30px;
  box-shadow: 6px 12px rgb(255, 255, 255);
  left: -80px;
  bottom: 0px;
}

.position-button-div .textwidget h3 {
  margin: 0;
  padding: 20px 40px;
  color: white;
  background-color: #15A57A;
  border-radius: 20px;
}

.how-keaParrot-second-section {
  padding: 50px 80px;
}

.how-keaParrot-second-section .panel-grid {
  margin-bottom: 0px !important;
}

.how-keaParrot-second-section .how-keaParrotTop-header h2,
.how-keaParrot-accordionSection .how-keaParrotTop-header h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
}

.how-keaParrot-RealTime-Main {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 60px !important;
}

.how-keaParrot-RealTime_cards {
  padding: 40px;
  border: 1px solid #EBE5EB;
  border-radius: 25px;
}

.how-keaParrot-RealTime_cards:hover {
  border: 1px solid #15A57A;
  box-shadow: 1px 1px 35px 10px #15a57a48;
  border-radius: 25px;
}

.how-keaParrot-Video-section {
  padding: 60px 80px;
}

.how-keaParrot-Video-section video {
  width: 100% !important;
  height: auto !important;
  border-radius: 30px;
}

.how-keaParrot-accordionSection {
  padding: 50px 80px;
}

.how-keaParrot-accordionSection .so-panel {
  margin-bottom: 0px !important;
}

.how-keaParrot-accordion-tabs .ap-accordion-panel {
  margin: 0 !important;
}

.how-keaParrot-accordion-tabs .ap-accordion-panel-header {
  background-color: transparent !important;
  border-top: 1px solid black;
  padding: 30px !important;
}

.how-keaParrot-accordion-tabs .ap-accordion {
  border-bottom: 1px solid black;
}

.how-keaParrot-accordion-tabs .ap-accordion-title {
  color: #120321 !important;
  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
}

.how-keaParrot-accordion-tabs .ap-accordion-panel.ap-accordion-panel-open .ap-accordion-title {
  color: #B462A6 !important;
}

.how-keaParrot-accordion-tabs .ap-accordion-panel-border {
  padding: 30px !important;
  padding-top: 0 !important;
  background-color: transparent !important;
}

.how-keaParrot-accordion-tabs .ap-icon-ionicons[data-sow-icon]:before {
  font-weight: 600;
  color: #120321;
}

.HowKeaWorksPage .how-keaParrotTop-cards {
  background-color: #DCEAFF;
}

.HowKeaWorksPage .position-button-div .textwidget h3 {
  background-color: #4B006E;
}

.HowKeaWorksPage .how-keaParrot-RealTime_cards:hover {
  border: 1px solid #B462A6;
  box-shadow: 1px 1px 30px 10px #b462a63f;
}

/*  how-parrot-work page end *********/


/*  insdutry-items page start *********/

.indiustryItems-first-section {
  padding: 80px 80px 0px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.indiustryItems-first-section img {
  width: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #120321;
  height: 45vw;
  object-fit: cover;
}

.indiustryItems-headings {
  margin-top: 5vw;
}

.indiustryItems-headings .top-heading {
  width: 100%;
  margin-bottom: 0.83em;
}

.colored-h3 {
  color: #B462A6;
  margin: 1em 0;
}

/* second section start */

.indiustryItems-second-section {
  margin-top: -220px;
  padding: 80px;
  padding-top: 0;
}

.top-assets-indiustryheading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.heading-right-indiustryasset {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background-color: #DCEAFF;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 40px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin: 0;
}

.heading-right-indiustryasset h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
  margin-bottom: 0.83em;
}

.indiustryItems-second-section .right-indiustryasset {
  width: 100px;
  margin-right: -110px;
  height: 45px;
  background-color: #DCEAFF;

}

.study-reveal-outer-div {
  padding: 20px;
  padding-right: 0;
  background-color: white;
  border-radius: 50px;
}

.study-reveal-color-div {
  background-color: #362D51;
  padding: 40px;
  position: relative;
  border-radius: 40px;
}

.study-reveal-color-div .absolute-button-div {
  bottom: 0px;
}

.card-percent-h1 {
  font-size: 160px;
  font-size: calc(80px + (160 - 80) * ((100vw - 1001px) / (2200 - 1001)));
  color: #B462A6 !important;
  margin-bottom: 40px !important;
  font-weight: 600;
}

.study-reveal-color-div h2 {
  color: white;
  margin-top: 0;
  margin-bottom: 0.83em;
}

.card-second-sub-heading {
  padding-bottom: 20px;
  width: 94%;
}

.card-text {
  color: white;
}

.table-area-of-focus {
  padding: 60px;
  border-radius: 40px;
  border-top-left-radius: 0;
  background: linear-gradient(to bottom, #DCEAFF, #dceaffcc, #dceaffa0, #ffff);
}

.table-are-concern-solution {
  margin-top: 40px;
}

.table-area-of-focus table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-area-of-focus th,
.table-area-of-focus td {
  padding-top: 50px;
  padding-left: 60px;
  vertical-align: top;
  text-align: left;
}

.table-area-of-focus th {
  padding-bottom: 20px;
  padding-top: 0px;
}

.table-area-of-focus th:nth-child(1),
.table-area-of-focus td:nth-child(1) {
  width: 20%;
  border-right: 1px solid black;
  padding-left: 0;
  padding-right: 20px;
}

.table-area-of-focus th:nth-child(2),
.table-area-of-focus td:nth-child(2) {
  width: 30%;
  border-right: 1px solid black;
  padding-right: 60px;
}

.table-area-of-focus th:nth-child(3),
.table-area-of-focus td:nth-child(3) {
  width: 50%;
}

.table-area-of-focus th {
  border-bottom: 1px solid black;
}

.table-area-of-focus ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.table-area-of-focus p.main-paragraph {
  margin: 0;
}

.table-area-of-focus table h3,
.table-area-of-focus table h4 {
  margin: 0 0 10px 0;
}

.industry-demo-video-section {
  padding-left: 80px;
  padding-right: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.industry-demo-video-section h2,
.greater-asset-section h2 {
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
  margin-bottom: 0.83em;
}

.indiustryItems-scroll-section {
  padding: 80px 0 160px 0;
  background: radial-gradient(50% 50% at 50% 50%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.indiustryItems-scroll-section .scroll-items img {
  height: 60px;
  margin-top: 10px;
  width: auto;
  display: block;
  border-radius: initial;
}

.indiustryItems-slider-items .scroll-item h4 {
  margin-top: 20px;
  margin-bottom: 0px;
}

.industry-background-video video {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.indiustryItems-slider-items .scroll-item {
  padding: 40px;
  width: 90% !important;
}

.greater-asset-section {
  padding-top: 160px;
  padding-bottom: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.greater-asset-section h2,
.greater-asset-section h3 {
  padding-left: 80px;
  padding-right: 80px;
}

.slider-middle-paragraph {
  padding-top: 15px;
  padding-bottom: 15px;
}

.indiustryItems-slider-items .button-white-background {
  padding: 0;
  padding-top: 10px;
}

.indiustryItems-slider-items .button-white-background .button img {
  max-width: 32px;
  height: auto !important;
  border-radius: 50% !important;
}

.greater-asset-section .scroll-main-image {
  height: 80px;
  width: auto;
  border-radius: initial;
}

.greater-asset-section .slick-track {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*  insdutry-items page end *********/

/* success start */
.blog-success {
  background: linear-gradient(#DCEAFF, #F9EBFF00);
}

.success-story-kia-bannner {
  padding: 80px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.success-allBlogs {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px !important;
}

.card-success-button {
  margin-top: 40px;
}

.blog-cards {
  background: #DCEAFF;
  border-radius: 30px;
  overflow: hidden;
}

.blog-cards:hover {
  box-shadow: 1px 1px 15px #12032157;
}

.blog-cards:hover .card-texts {
  background: linear-gradient(180deg, #DCEAFF 0%, #DCEAFF 115.21%);
}

.card-texts {
  position: relative;
  padding: 20px 40px 40px 40px;
  background: linear-gradient(180deg, #DCEAFF 0%, #FFF 115.21%);
}

.card-texts h2 {
  transform: translateY(20px);
  transition: linear 0.3s;
}

.appear-on-hover-text {
  opacity: 0;
  transition: linear 0.2s;
}

.blog-cards:hover .appear-on-hover-text {
  opacity: 1;
}

.blog-cards:hover .disappear-hover-text {
  opacity: 0;
}

.blog-cards:hover .card-texts h2 {
  transform: translateY(0);
}

.card-texts .disappear-hover-text {
  position: absolute;
  top: 30%;
  opacity: 1;
  left: 40px;
  width: calc(100% - 80px);
  transition: linear 0.3s;
}

.card-texts h2 {
  margin: 0;
}

.card-texts h3 {
  color: #4B006E;
}

.appear-on-hover-text h3 {
  margin: 20px 0;
}

.card-horizontal-line {
  height: 1px;
  width: 100%;
  background-color: #120321;
  margin-bottom: 10px;
}

.card-texts .card-button {
  margin-top: 40px;
}

/* success end */

.our-partner-page-banner .first-section-image-div {
  display: flex;
  justify-content: end;
}

.our-partner-page-banner .first-section-image-div img {
  max-width: 800px;
}

.partner-slider-section.trust-us-section h3 {
  padding-top: 10px;
  margin-bottom: 0.83em;
}

.partner-slider-section .ow-button-align-center {
  text-align: left !important;
  padding-left: 80px;
  padding-top: 20px;
}

.our-team-topNew-banner .first-section-image-div {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header .header-element .links-div .menu-items-active .close-menu-btn i,
.header .header-element .links-div .menu-items-left .close-menu-left-btn i {
  width: 32px;
  margin-top: 0px;
  height: 32px;
  border-radius: 50%;
  background-color: #4B006E;
  /* box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
    0 -2px 5px rgba(128, 128, 128, 0.2), 2px 0 5px rgba(128, 128, 128, 0.2),
    -2px 0 5px rgba(128, 128, 128, 0.2); */
  color: #fff;
  font-size: 25px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header .header-element .links-div .menu-items-active .menu {
  width: 100%;
  justify-content: space-between;
  padding-left: 10px;
}

.header .header-element .links-div .menu-items-active .menu-header-container {
  display: flex;
  justify-content: end;
}

.header .header-element .links-div .menu-items-left .menu {
  justify-content: space-between;
  padding: 0px 15px;
  min-width: 700px;
  width: max-content;
}

.header .header-element .links-div .menu-items-left .kea-menu-group .solution-child-menu {
  display: flex;
  align-items: center;
}

.new-hamburger-button .hamburger-image-c {
  display: none;
}

.new-hamburger-button {
  margin-left: 20px;
  margin-right: 12px;
}

@media only screen and (min-width: 1081px) {
  .close-menu {
    display: none;
  }
}

.menu-items-active .close-menu-btn {
  display: inline-flex;
  margin: 0 !important;
}

.close-menu-left-btn {}

.kea-menu-group {
  display: flex;
  align-items: center;
}

.kea-menu-group .solution-child-menu {
  display: flex;
}

.kea-menu-group .solution-child-menu a {
  margin: 0px 10px;
  font-weight: 700;
  color: #120321 !important;
  font-size: calc(16px + (24.0 - 16) * ((100vw - 1001px) / (2200 - 1001))) !important;
  line-height: 1.5;
}

.demo-toggle-main {
  display: flex;
  width: 50%;
  justify-content: end;
}

.hamburger-button-left {
  padding: 8px 12px;
}

.hamburger-button-left .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hamburger-button-left .menu a {
  margin-right: 20px;
}

.header-link-div .links {
  justify-content: end;
}

.header .header-element .links-div .menu-items .menu li a {
  position: relative;
  z-index: 5;
}

.custom-submenu .sol-child:nth-of-type(n+3) {
  margin-top: 0px;
}

.kea-parrot-btn {
  display: none;
}

.aboutUs-top-banner-sec .button-white-background {
  padding: 0;
}

.first-section-parrorGpt {
  grid-template-rows: minmax(max-content, 300px) min-content;
  gap: 0px 60px;
}

.first-section-parrorGpt .top-heading {
  grid-row: 1;
}

.first-section-parrorGpt .first-section-kea-image-div {
  grid-row: 1 / span 2;
}

.blog a,
.all-blogs a {
  color: #120321;
}

/* faq */
.page-id-701 .basic-banner,
.page-id-30 .basic-banner {
  padding-bottom: 0;
  padding-left: 80px;
  padding-right: 80px;
}

.page-id-701 .term-policy,
.page-id-30 .term-policy {
  padding-left: 80px;
  padding-right: 80p;
}

.page-id-701 .basic-banner .top-heading-banner,
.page-id-30 .basic-banner .top-heading-banner {
  margin-bottom: 0.83em;
}

.page-id-701 .page-content-wrapper h2,
.page-id-30 .page-content-wrapper h2 {
  margin-top: 60px;
  margin-bottom: 0.83em;
}

.page-id-701 .page-content-wrapper h3,
.page-id-30 .page-content-wrapper h3 {
  margin: 1em 0px;
}

.page-id-701 .page-content-wrapper p,
.page-id-30 .page-content-wrapper p {
  margin-bottom: 1em;
}

.page-id-701 .page-content-wrapper .title-paragraph-down-arrow,
.page-id-30 .page-content-wrapper .title-paragraph-down-arrow {
  padding: 0;
}

.page-id-701 .page-content-wrapper h4,
.page-id-30 .page-content-wrapper h4 {
  font-size: calc(18px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
  margin-bottom: 1em;
  margin-top: 1.6rem;
}

.SingleSuccessStoryPage .blog:hover {
  background-color: #DCEAFF;
}

.scroll-itemsKea {
  padding: 40px;
}

.scroll-itemsKea img {
  border-radius: 0px;
}

.scroll-itemsKea h4 {
  margin-top: 20px;
  margin-bottom: 0px;
}

.terms-table td,
.terms-table th {
  border: 1px solid #fff;
}

.bottom-table:nth-child(odd) {
  background-color: #4B006E;
  color: white;
}

.bottom-table:nth-child(even) {
  background-color: #F6E2FF;
}

.parrotKea-video-sec-title {
  padding-right: 50px;
}

.parrotKea-video-sec-title h2 {
  width: 90%;
}

.ap-accordion-open-button svg path {
  fill: #120321;
}

.ap-accordion-close-button svg path {
  fill: #B462A6;
}

.ap-accordion-close-button svg {
  transform: rotate(180deg);
}

.walking-talk-secSlider .marquee svg {
  padding: 0;
  width: 25%;
  height: auto;
  background-color: transparent;
  aspect-ratio: auto;
}

.walking-talk-secSlider .marquee svg path {
  fill: #4B006E;
}

.walking-talk-secSlider .home-logo-sec {
  border-radius: 25px;
  max-width: 280px;
  height: 160px;
}

.ai-work-content h1 {
  margin-bottom: 40px;
}

.svg-fill-light-purple-white {
  fill: #4B006E;
}

.svg-red-asset {
  fill: #B462A6;
}

.svg-stroke-dark-purple-white {
  stroke: #4B006E;
}

.svg-stroke-light-purple-white {
  stroke: #B462A6;
}

.details-color-text {
  color: #4B006E;
}

.first-details-blog h3 {
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
}

.second-details-blog a h3:hover {
  color: #F6E2FF;
}

.simple-work-section {
  padding: 80px;
  padding-top: 30px;
}

.background-colored-div {
  background: radial-gradient(#DCEAFF, #DCEAFF, #ffffff);
  border-radius: 40px;
  position: relative;
}

.simple-work-image-div {

  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: start;
  height: fit-content;
}

.simple-work-image-div img {
  width: 90%;
  margin-bottom: 140px;
  height: auto;
  /* max-width: 1200px; */

}

.simple-work-paragraph-assets {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  position: absolute;
  bottom: 0;
  right: 0;
}

.simple-paragraph-bottom-assets {
  display: flex;
  justify-content: end;
  align-items: end;
}

.simple-paragraph-left-asset {
  width: 100%;
  height: 60px;
  background-color: #4e465500;
  border-bottom-right-radius: 40px;
  box-shadow: 15px 15px rgb(255, 255, 255);

}

.simple-paragraph-top-asset {
  width: 100px;
  height: 60px;
  background-color: #4e465500;
  border-bottom-right-radius: 40px;
  box-shadow: 15px 15px rgb(255, 255, 255);

}

.simple-paragraph {

  background-color: white;
  padding-left: 25px;
  padding-top: 25px;
  border-top-left-radius: 40px;
}

.simple-work-button {
  margin-top: 40px;
}

/* curious section */
.curious-mind-section {
  padding: 80px;

}

.background-with-color {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px;
  background: linear-gradient(to bottom, #DCEAFF, #dceaffcc, #dceaffa0, #ffff);
  border-radius: 40px;
}

.right-asset-curious {
  width: 100%;
}

.hero-asset-curious {
  width: 100%;
  margin-top: -80px;
  height: auto;
}

.left-content-curious h2 {
  font-weight: 600;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  margin-bottom: 0.83em;
}

/* curious section */

/* simple parrot section */
.simple-work-parrot-section {
  padding: 80px;
}

.background-colored-parrot-div {
  background: linear-gradient(to right, #FFF2D0, #FFF2D0, #ffffff);
  border-radius: 40px;
  position: relative;
  /* min-height: 1050px; */
}



.title-right-parrot-asset {
  display: grid;
  align-items: start;
  grid-template-columns: max-content max-content;
}

.title-right-parrot-asset h2 {
  padding-right: 25px;
  padding-bottom: 25px;
  background-color: white;
  border-bottom-right-radius: 40px;
  margin: 0;
  font-size: calc(40px + (60.0 - 40) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 600;
}

.simple-work-parrot-right-asset,
.simple-work-parrot-bottom-asset {
  background-color: #362d5100;
  width: 100px;
  height: 60px;
  border-top-left-radius: 40px;
  box-shadow: -20px -20px rgb(255, 255, 255);
}

.simple-work-parrot-image-div {

  padding-left: 60px;
  padding-right: 60px;
  margin-top: -60px;
  margin-bottom: -60px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 80px;
  align-items: center;
  justify-content: start;
  height: fit-content;
}

.simple-work-parrot-image-div img {}

.simple-work-parrot-image-div .first-image-work-parrot {
  width: 90%;
}

.simple-work-parrot-image-div .second-image-work-parrot {
  width: 90%;
}



.simple-work-parrot-paragraph-assets {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

}

.simple-parrot-paragraph-bottom-assets {
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
  align-items: end;
}

.simple-parrot-paragraph-left-asset {
  width: 100px;
  height: 50px;
  background-color: #4e465500;
  border-bottom-left-radius: 30px;
  box-shadow: -15px 15px rgb(255, 255, 255);

}

.simple-parrot-paragraph-top-asset {
  width: 100px;
  height: 60px;
  background-color: #4e465500;
  border-bottom-left-radius: 40px;
  box-shadow: -15px 15px rgb(255, 255, 255);

}

.simple-parrot-paragraph {

  background-color: white;
  padding-right: 20px;
  padding-top: 20px;
  border-top-right-radius: 40px;
}

.simple-work-button .button {
  width: max-content;
}

/* simple parrot section */

/* features section */
.features-map-section {
  padding: 80px;
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.slider-features-map {
  padding: 40px;
  padding-bottom: 0;
  background: radial-gradient(#ffffff, #DCEAFF);
  border-radius: 40px;
  animation: fade 0.6s ease-in-out;
}

.fadeKea {
  animation: fade 0.7s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.slidesNew {
  padding-bottom: 0px;
}

.slider-image-keaMain-parent {
  display: flex;
  justify-content: center;


}

.slider-image-keaMain-parent img {
  width: 40%;

}

.left-right-arrow-border-radius-asset-keaMain {
  margin-right: -40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.top-radius-asset-keaMain {
  float: left;
}

.navigation-buttons-keaMain {
  padding: 10px;
  border-top-left-radius: 30px;
  padding-bottom: 0;
  background-color: white;
}

.title-scroll-arrows .navigation-buttons {
  display: none;
}

.top-radius-asset-parent-keaMain {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}

.top-radius-asset-keaMain {
  width: 40px;
  border-bottom-right-radius: 35px;
  box-shadow: rgb(255, 255, 255) 10px 10px;
  height: 40px;
  background-color: rgba(255, 0, 0, 0);
}


.bottom-radius-asset-keaMain {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: end;
}

.left-radius-asset-keaMain {
  width: 100%;
  height: 40px;
  border-bottom-right-radius: 30px;
  box-shadow: rgb(255, 255, 255) 10px 10px;
  background-color: rgba(0, 0, 255, 0);
}

.left-button-keaMain,
.features-right-button {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}

.navigation-buttons-keaMain .button .white-purple-arrow {
  background-color: transparent;
}

.slide-header-keaMain {
  margin: .83em 0;
}

.features-map-ParrotHome-section .slider-features-map {
  background: radial-gradient(#ffffff, #FFF2D0);
}

.right-keaMain-texts h1,
.right-keaMain-texts h2 {
  margin-bottom: 0.83rem !important;
}

/* features section */

.result-display-section {
  padding: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

#resultContainer {
  display: flex;
  border-radius: 20px;
  justify-content: space-between;
  align-items: start;
  font-family: sans-serif;
}

#resetButton {
  padding: 10px 10px 10px 20px;
  border-radius: 100px;
  color: white;
  background-color: #4B006E;
  box-shadow: 1px 1px 10px 2px rgba(255, 255, 255, 0.199);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
}

.reset-button p {
  margin-right: 20px;
}

.second-background-color-button {
  background-color: #ffffff36;
  border-radius: 50px;
  padding: 5px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resetFill {
  fill: white;
}

#resetButton.hidden {
  display: none;
}

#resultText {
  font-weight: 500;
}

#resultText h3 {
  padding-top: 20px;
  padding-left: 20px;
}

#resultText p {
  padding-bottom: 20px;
  padding-left: 20px;
}

.result-display-section button:hover div svg {
  background-color: transparent;
}

h3.filter-class {
  margin-bottom: 0.83em;
  font-size: calc(20px + (28.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  font-weight: 500;
}

/* media query */

@media only screen and (max-width: 1350px) {
  .menu-items-left {
    display: none;
  }

  .hamburger-parent-left {
    display: block;
  }

  .menu-items-left.menu-items-left-active {
    display: block;
  }

  .menu-items-left-active .close-menu-left-btn {
    display: block;
    margin: 0 !important;
  }

  .menu-items-left-active .menu {
    padding-right: 5px !important;
  }

  .header-link-div .links {
    justify-content: space-between;
  }


}

@media only screen and (max-width: 1600px) {
  .indiustryItems-headings {
    margin-top: 0px;
  }

  .new-login-btn .kia-login p,
  .new-login-btn .parrot-login p {
    display: none;
  }

  .new-login-btn .kia-login,
  .new-login-btn .parrot-login {
    min-width: auto;
  }

  .new-light-btn {
    width: auto;
    min-width: auto;
  }

  .new-login-btn .light-button p {
    display: none;
  }
}

@media only screen and (max-width: 1400px) {
  .header-top-banner {
    height: 15px;
  }

  .header-top-banner::before {
    width: 15px;
  }

  .header-top-banner::after {
    width: 15px;
  }

  .logo::after {
    left: 15px;
  }

  .logins::after {
    right: 15px;
  }



  .top-left-asset {

    right: 65vw;
    left: auto;
    width: 20%;
    max-width: 480px;
    min-width: 250px;
    top: calc(49vh + 70px);

  }

  .kia-login,
  .parrot-login {
    margin-right: clamp(12px, 1vw, 20px);
  }

  .all-blogs {
    gap: 40px;
  }

  .indiustryItems-second-section {
    margin-top: -140px;
  }
  .kia-login,
  .parrot-login,
  .light-button {
    width: auto;
    min-width: 0;
  }
  .kia-login p,
  .parrot-login p,
  .light-button p {
    display: none !important;
  }
}


@media only screen and (min-width: 1300px) {

  .card1 {
    padding: 20px;
    background-color: #ffffff;
    position: absolute;
    width: 35vw;
    max-width: 390px;
    border-radius: 40px;
    transform: translate(20%, -100%);
    top: 52%;
    left: 52%;
    /* border: 1px solid rgb(116, 114, 114); */
  }

  .card2 {
    padding: 20px;
    background-color: #ffffff;
    position: absolute;
    width: 35vw;
    max-width: 390px;
    border-radius: 40px;
    transform: translate(20%, 0%);
    bottom: 0%;
    left: 35%;
    /* border: 1px solid rgb(116, 114, 114); */

  }

  .border-card {
    position: absolute;
    width: 100%;
    max-width: 420px;
    height: 100%;
    left: 1px;
    top: 1px;
    z-index: 4;
  }

  .ai-integrated-heading,
  .conventional-heading {
    height: 90px;
  }
}

@media only screen and (max-width: 1080px) {

  .new-hamburger-button .hamburger-image-c {
    margin-right: 10px;
    display: block;
    width: auto;
  }

  .top-heading {
    font-size: calc(34px + (48.0 - 34) * ((100vw - 751px) / (1080 - 751)));
    width: 55%;
  }

  .top-heading-banner {
    font-size: calc(34px + (48.0 - 34) * ((100vw - 751px) / (1080 - 751)));

  }

  .banner-section {
    padding: 40px 0px 0 40px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
  }

  h1 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .main-paragraph {
    font-size: calc(16px + (20.0 - 16) * ((100vw - 751px) / (1080 - 751)));
    line-height: 1.5;
    margin: 0;
  }

  .secondary-paragraph-top {
    font-size: calc(12px + (14.0 - 12) * ((100vw - 751px) / (1080 - 751)));
  }

  h2 {

    font-size: calc(22px + (32.0 - 22) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  h3 {

    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  .about-client-sec h4 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .about-client-sec .trust-us-heading-parent h6 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .header-element p,
  .secondary-paragraph a,
  a p,
  button p,
  .footer-bottom p {
    font-size: calc(14px + (18.0 - 14) * ((100vw - 751px) / (1080 - 751)));
  }



  .hamburger-cross-parent,
  .card-close-button1 {
    width: fit-content;
  }

  .hamburger-cross-parent,
  .card-close-button2 {
    width: fit-content;
  }

  .hamburger-cross-button {
    background-color: #4B006E;
    border-radius: 30px;
    width: fit-content;

    padding: 3px;
    display: flex;

    align-items: center;
    justify-content: space-between;
    color: white;
    border: 1px solid #4B006E;
    box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
      /* Bottom shadow */
      0 -2px 5px rgba(128, 128, 128, 0.2),
      /* Top shadow */
      2px 0 5px rgba(128, 128, 128, 0.2),
      /* Right shadow */
      -2px 0 5px rgba(128, 128, 128, 0.2);

  }

  .menu-items {
    width: 100%;
    display: none;
  }

  .menu-items-active {
    width: 100%;
    display: flex;
  }

  .hamburger-parent {
    display: flex;
  }

  .menu-items.active {
    display: flex;
    /* Show menu items when active */
  }

  .header-demo-button.hidden {
    display: none;
  }

  .hamburger-parent.hidden {
    display: none;
    /* Hide hamburger button when menu is active */
  }

  .logo {
    padding: 0;
    padding-right: 10px;
    padding-bottom: 5px;
    border-end-end-radius: 25px;
    align-items: center;
  }

  .logins {
    border-bottom-left-radius: 25px;
    padding-left: 10px;
    padding-bottom: 5px;
  }

  .logo img {
    width: 17vw;
    min-width: 160px;
    max-width: 200px;
  }

  .logo::after {
    left: 10px;
  }

  .logins::after {
    right: 12px;
  }

  .links-div {
    padding: 8px;
    padding-bottom: 0;
  }

  .kia-login,
  .parrot-login {
    margin-right: clamp(5px, 1vw, 10px);
  }

  .menu-items {
    min-width: 400px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 5px;
    justify-content: space-between;
  }

  .hamburger-button {
    padding: 10px;

  }

  .kia-login img,
  .parrot-login img {
    width: 20px;
  }

  .header-top-banner::before {
    width: 10px;
  }

  .header-top-banner::after {
    width: 12px;
  }

  .hamburger-cross-button img {
    width: 18px;
  }

  .demo-button img {
    width: 24px;
    padding: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .demo-button {

    padding: 4px;

  }

  .demo-button p {
    padding-left: 7px;
    padding-right: 0px;
  }

  .hamburger-button img {
    width: 16px;
  }

  .hamburger-button-left .menu img {
    width: auto;
  }

  .hamburger-button-left,
  .new-hamburger-button {
    padding: 4px 12px !important;
  }

  .hamburger-button-left .menu a {
    font-size: 19px !important;
  }

  .button img,
  button .white-purple-arrow {
    min-width: 16px;
    padding: 8px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 50%;
    background-color: #ffffff3d;
  }

  .white-purple-arrow {
    padding: 5px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .button {
    padding: 4px;
  }

  .button p {
    padding-left: 7px;
    padding-right: 7px;
  }

  .first-section {
    padding: 40px;
    height: 100vh;
    background-size: 120vw 200vh;
    background-position: right 35% bottom 45%;


  }


  .top-left-asset {
    max-width: 350px;
    width: 18%;
    top: calc(43vh + 40px);
    left: calc(20vw - 150px);
    ;
  }

  .top-right-asset-1 {
    top: 20px;
    width: 10%;
    max-width: 220px;
    min-width: 110px;
    right: 45%;
  }



  .top-right-asset-3 {
    width: 15%;
    min-width: 100px;
    left: calc(15% - 240px);
    top: calc(15vh + 120px);
    bottom: auto;
  }

  .top-card1 {
    right: 67%;
    top: calc(12% + 10vh);
    padding: 20px;
    width: 30%;
    max-width: 600px;
    min-width: 120px;

  }

  .top-card2 {
    width: 55%;
    max-width: 700px;
    right: calc(20% - 100px);
    bottom: auto;
    top: 50vh;

  }

  .top-right-asset-2 {
    width: 10%;
    max-width: 220px;
    min-width: 120px;
    right: -20px;
    top: calc(18% + 30px);
  }





  .top-mobile-slider-parent {
    position: absolute;
    right: 5%;
    width: 45vw;
    height: calc(17vw + 80px);
    max-width: 480px;
    min-width: 220px;

    /* bottom: calc(10vw + 400px);
     */
    bottom: auto;
    top: clamp(200px, 10vw, 500px) !important;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;

  }

  .top-mobile-slider {
    width: 100%;

    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    display: block;
    height: 100%;


    position: relative;
  }

  .mobile-slider-image {
    width: 90%;
    border-radius: 20px;
    z-index: 5;
    position: absolute;
  }



  /* removing hover effect */
  /* removing hover effect */

  .card1:hover .card-middle-text p {
    opacity: 0;
    transition: ease-in-out .3s;

  }

  .card2:hover .card-middle-text p {
    opacity: 0;
    transition: ease-in-out .3s;

  }

  .card1:hover .middle-title {
    opacity: 0;
    transition: ease-in-out .4s;
    top: 18%;
  }

  .card2:hover .middle-title {
    opacity: 0;
    transition: ease-in-out .4s;
    top: 18%;
  }

  .card1:hover .icon-textbottom-title {
    transition: unset;
    opacity: 1;
    bottom: 60px;
  }

  .card2:hover .icon-textbottom-title {
    transition: unset;
    opacity: 1;
    bottom: 60px;
  }


  .card1:hover .card-img {

    opacity: 1;

  }

  .card2:hover .card-img {

    opacity: 1;

  }

  .card1:hover {

    background: white;
    transition: unset;

  }





  .card-close-button1 {
    z-index: 10;
  }

  .card-close-button2 {
    z-index: 10;
  }




  .card1:hover .top-card-arrow {
    fill: white;
    background-color: #4b006e;
    transition: unset;
  }

  .card2:hover .bottom-card-arrow {
    fill: white;
    background-color: #4b006e;
    transition: unset;
  }

  .card1:hover .button {
    fill: white;
    background-color: #4b006e;
    transition: unset;
    border: 1px solid #4b006e;
  }

  .card2:hover .button {
    fill: white;
    background-color: #4b006e;
    transition: unset;
    border: 1px solid #4b006e;
  }

  .card2:hover {

    background: white;
    transition: unset;

  }

  /* removing hover effect */
  /* removing hover effect */


  /* adding click style */
  /* adding click style */

  .card2 .icon-textbottom-title {
    transition: ease-in-out .4s !important;
  }

  .card2 .middle-title {

    top: 70% !important;
    transition: ease-in-out .3s !important;
  }

  .card1 .icon-textbottom-title {
    transition: ease-in-out .4s !important;
  }

  .card1 .middle-title {

    top: 70% !important;
    transition: ease-in-out .3s !important;
  }


  .tablet-click-effect .card-middle-text p {
    opacity: 1 !important;
    transition: ease-in-out .3s !important;

  }

  .tablet-click-effect .middle-title {
    opacity: 1 !important;
    transition: ease-in-out .4s !important;
    top: 18% !important;
  }

  .tablet-click-effect .icon-textbottom-title {
    transition: ease-in-out .3s !important;
    opacity: 0 !important;
    bottom: 40% !important;
  }

  .tablet-click-effect .card-img {

    opacity: 0 !important;

  }

  .tablet-click-effect {

    transition: ease-in-out .4s !important;

  }

  .tablet-click-effect .white-purple-arrow {
    fill: #4B006E !important;
    background-color: #F6E2FF !important;
    transition: ease-in-out .2s !important;
  }

  .tablet-click-effect .button {
    fill: #4B006E !important;
    background-color: #F6E2FF !important;
    transition: ease-in-out .2s !important;
    border: 1px solid #F6E2FF !important;
  }

  .card1 .card-inside-all .card-content-image .bottom-title-logo .card-close-button1 {
    transform: rotate(45deg);
    transition: ease-in-out .2s;
  }

  .card2 .card-inside-all .card-content-image .bottom-title-logo .card-close-button2 {
    transform: rotate(45deg);
    transition: ease-in-out .2s;
  }

  .tablet-click-effect .card-inside-all .card-content-image .bottom-title-logo .card-close-button2 {
    transform: rotate(90deg);
    transition: ease-in-out .2s;
  }

  .tablet-click-effect .card-inside-all .card-content-image .bottom-title-logo .card-close-button1 {
    transform: rotate(90deg);
    transition: ease-in-out .2s;
  }

  .card1 .button-white-background,
  .card2 .button-white-background {
    background-color: rgba(255, 255, 255, 0);
  }

  .border-radius {

    height: 35px;

    border-end-end-radius: 20px;

  }

  /* adding click style */
  /* adding click style */




  /* second-section */
  /* second-section */
  .second-sec-asset {
    width: 75vw;
    max-width: 650px;
    min-width: 550px;
    margin-left: calc(8vw - 360px);
    margin-top: calc(11vw - 5px);
  }



  .card1 {
    width: 30vw;
    min-width: 270px;
    max-width: 320px;
    border-radius: 40px;
    transform: translate(10%, -100%);
    top: 45%;
    left: 55%;
  }

  .card2 {
    width: 35vw;
    min-width: 300px;
    max-width: 320px;
    border-radius: 40px;
    transform: translate(10%, 10%);
    top: 55%;
    left: 35%;
    right: auto;
    bottom: auto;
  }

  .icon-textbottom-title {
    bottom: 60px;
  }

  .card-middle-text p {
    margin-bottom: 60px;
  }

  .top-card-arrow,
  .bottom-card-arrow {
    width: 30px;
    height: 30px;
  }

  .trust-us-heading-parent h3 {
    padding: 0px 0px 40px;
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .conventional-system {
    padding: 60px 0px;
    padding-bottom: 0px;
    padding-top: 0;
    padding: 10px 25px;
  }

  .conventional-system .bg-purple {
    padding: 20px;
  }

  .conventional-system .bg-purple h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }

  .conventional-system .bg-purple .home-system-left h3 {
    font-size: 22px;
    margin-bottom: 0px;
    line-height: 30px;
  }

  .conventional-system .bg-purple h3 {
    margin-bottom: 0px;
  }

  .main-content.page-front .bg-image-sec {
    background-image: none !important;
    height: 100%;
  }

  .home-kea-slider .slide-inner .desc {
    display: none;
  }

  .kea-parrot-tab-section {
    padding: 0px 20px;
  }

  .kea-parrot-tab-section .tab-content.active {
    padding: 32px;
  }

  .home-kea-slider .swiper-button-next.kea-next {
    right: 5px;
    bottom: 10px;
    width: 22px;
    height: 22px;
  }

  .home-kea-slider .swiper-button-prev.kea-prev {
    bottom: 10px;
    width: 22px;
    height: 22px;
    right: 32px;
    transition: ease-in-out .3s;
  }

  .home-kea-slider .swiper-button-next.kea-next:after,
  .home-kea-slider .swiper-button-prev.kea-prev:after {
    font-size: 10px;
    color: #fff;
  }

  .kea-parrot-tab-section .slide-inner .desc {
    display: none;
  }

  .kea-parrot-tab-section .swiper-button-next.parrot-next {
    right: 5px;
    bottom: 10px;
    width: 22px;
    height: 22px;
  }

  .kea-parrot-tab-section .swiper-button-prev.parrot-prev {
    bottom: 10px;
    width: 22px;
    height: 22px;
    right: 32px;
  }

  .kea-parrot-tab-section .swiper-button-next.parrot-next:after,
  .kea-parrot-tab-section .swiper-button-prev.parrot-prev:after {
    font-size: 10px;
    color: #fff;
  }

  /* second-section */
  /* second-section */


  /* trust us section */
  /* trust us section */
  .trust-us-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .trust-us-heading-parent {
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .marquee__group svg {
    width: 100px;
  }

  /* trust us section */
  /* trust us section */



  /* what we believe section */
  /* what we believe section */

  .what-we-believe-section {
    padding: 40px;
    padding-top: 0px;
    padding-bottom: 60px;
  }

  .what-we-believe-card {
    padding: 40px;
    padding-bottom: 60px;
  }

  .what-we-believe-card h1 {
    margin-bottom: 40px;
  }


  .bottom-text {
    gap: 60px;
  }

  .we-believe-icon-text {
    height: 120px;
  }

  .what-we-believe-button-div {
    padding: 10px;
  }

  .radius-shadow {
    margin-bottom: 8px;
    height: 30px;
  }

  .first-shadow {
    border-end-end-radius: 23px;
  }

  .second-shadow {
    border-end-start-radius: 23px;
  }

  .what-we-believe-button-parent {
    margin-top: -50px;
  }

  .tablet-top-radius-assets {
    display: none;
  }

  /* what we believe section */
  /* what we believe section */


  /* kea parrot tab section */
  /* kea parrot tab section */
  .kea-aprrot-tab-section {
    padding: 40px;
  }

  .tabs {
    margin-left: 30px;
  }

  .tab-button {

    padding: 2px 25px;
  }

  .tab-button h3 {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .tab-content.active {
    align-items: start;
    gap: 0;
  }

  .tab-content .content {
    padding: 30px;
    padding-bottom: 0;

  }

  .slider {
    margin-top: 30px;
    margin-right: 30px;
    padding: 25px;
  }

  .slides {
    padding: 0;
  }

  .slider-image-parent {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-image {
    width: 100%;
    min-width: 110px;
  }

  .tab-inside-slider p {
    width: 75%;
  }

  .border-asset-slider-top-bottom {
    width: 70%;
  }

  .border-asset-slider-right {
    max-width: 140px;
  }

  .navigation-buttons {
    box-shadow: none;
  }

  .tab-content-button-div {
    padding: 40px;
  }

  /* kea parrot tab section */
  /* kea parrot tab section */

  /* extra hour section */
  /* extra hour section */
  .extra-hour-section-parent {
    padding: 30px;
  }

  .extra-hour-section {
    background-image: none;
    height: unset;
    border-radius: 50px;
    background-position: right center;
    background-size: contain;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
  }

  .extra-hour-hidden-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
  }

  .extra-hour-hidden-content p {
    font-size: calc(16px + (20.0 - 16) * ((100vw - 751px) / (1080 - 751)));
  }

  .extra-hour-content p {
    display: none;
  }

  .extra-hour-content-parent {
    width: calc(100% + 100px);
    margin-left: -100px;
    background-image: url('/assets/body-assets/image\ 13@2x.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    /* background-color: #4B006E; */
    height: 100%;
    border-radius: 30px;

  }

  .extra-hour-heading-content {
    margin-top: 0px;
    width: calc(100% + 20px);
    margin-right: -20px;
    z-index: 2;
    margin-left: 0;
    height: calc(32vw + 95px);
    padding: 20px;
    padding-left: 0;
    background-color: #ffffff;
  }

  .extra-hour-tablet-image {
    width: 100%;
  }

  .top-radius-bar,
  .top-radius-bar-2nd,
  .top-radius-bar-3rd,
  .top-radius-bar-4rth {
    display: none;
  }

  .extra-hour-content {
    height: 0;
    padding: 0;
  }

  .tablet-radius-shadow-asset {
    display: block;
    border-radius: 30px;
    top: 0;
    left: 0;
    background-color: #33333300;
    width: 20%;
    height: 100%;
  }

  .first-shadow-asset-tablet {
    background-color: #62ca5900;
    width: 90%;
    height: 90px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: rgb(255, 255, 255) -25px 0px;
  }

  .second-shadow-asset-tablet {
    background-color: #62ca5900;
    width: 10%;
    height: calc(32vw + 95px);
    padding: 19px;
  }

  .third-shadow-asset-tablet {
    background-color: #62ca5900;
    width: 90%;
    height: 90px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: rgb(255, 255, 255) -25px 0px;
  }

  .extra-hour-middle-div {
    display: none;
  }

  .extra-hour-content .absolute-button-div {
    position: absolute;
    bottom: 0;
  }

  .extra-hour-content .absolute-button-div .tall-border-radius-bottom,
  .extra-hour-content .absolute-button-div .div-button-combined .border-radius {
    display: block;
  }

  .extra-hour-content .absolute-button-div .div-button-combined .button-white-background {
    padding: 10px;
    padding-bottom: 0;
  }

  /* extra hour section */
  /* extra hour section */



  /* data speaks css */
  .data-speak-section {
    padding: 40px 15px;
    padding-bottom: 7vw;
  }

  .your-days-wrapper {
    padding-bottom: 50px;
    overflow: hidden;
  }

  .love-econversion {
    padding-top: 0px;
    overflow: hidden;
    padding: 0px 20px;
  }

  .love-econversion .sow-image-container img {
    margin-top: 0px;
    height: 400px !important;
    object-fit: cover;
    padding: 10px;
  }

  .data-speaks-first {
    margin-top: 40px;
  }

  .data-speaks-first {
    padding: 140px;
  }

  .data-speaks-second {
    padding: 40px;
    gap: 0px;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .data-speak-second-image img {
    width: 100%;
    max-width: 500px;
    min-width: 150px;
    margin-left: auto;
  }

  .data-speak-section .panel-no-style .siteorigin-widget-tinymce.textwidget {
    margin-bottom: 0px;
  }

  /* about */
  /* about */
  .about-section {
    padding: 40px;
  }

  .about-paragraph {
    display: none;
  }



  .we-love-conversation-h1-visible {
    opacity: 1;
    left: 1px;
    bottom: 15px;
  }

  .we-love-conversation-h1-invisible {
    opacity: 1;
    left: 1px;
    bottom: 15px;
  }

  .we-love-conversation-h2-visible {
    opacity: 1;
    width: 85vw;
    bottom: calc(11vw + 20px);

  }

  .we-love-conversation-h2-invisible {
    opacity: 1;
    width: 85vw;
    bottom: calc(11vw + 20px);
  }


  .top-radius-text {
    width: calc(100% - 52vw)
  }

  .tall-border-radius-top {
    width: calc(50vw + 5px);
  }

  .tablet-top-radius-assets {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(255, 0, 0, 0);
    height: 40px;
    border-radius: 30px;
    display: flex;
  }

  .tablet-top-radius-asset-right {
    width: calc(100% - 52vw);
    padding: 20px 20px 20px 0px;
    background-color: rgba(0, 0, 255, 0);
  }

  .tablet-top-radius-asset-left {
    width: 40px;
    box-shadow: -10px -10px 0 0 rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0);
    border-start-start-radius: 30px;
  }

  .tall-border-radius-top {
    display: none;
  }

  /* about */
  /* about */


  /* insight */
  /* insight */

  .insight-section {
    padding: 40px;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .insight-items {
    margin-top: 40px;
  }

  /* insight */
  /* insight */

  /* footer */
  /* footer */
  .footer-top {
    padding: 40px;
  }

  .footer-about-contact-subscribe {
    gap: 60px;
  }

  .addresses-top {
    display: block;
  }

  .addresses,
  .line {
    display: none;
  }

  .footer-address {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 60px;
    margin-top: 30px;

  }

  .addresses-top {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .quick-links {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
    gap: 10px;
  }

  .footer-vertical-line {
    width: 100%;
    height: 2px;
    background-color: white;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .subscribe-input input {
    padding: 15px;
    width: 100%;
  }


  .subscribe-input button {
    padding: 15px 30px 15px 30px;
  }

  .footer-bottom {
    padding: 20px 40px 20px 40px;
  }

  .bottom-sticky-contact-button {

    bottom: 40px;
  }

  .footer-top,
  .address-quick-links-footer-footer {
    display: block;
    flex-direction: column;
    gap: 0;
  }

  /* footer */
  /* footer */

  /* popup */
  /* popup */
  .popup {
    padding: 40px;
    width: 70%;
  }

  .popup h2 {

    margin-bottom: 15px;
  }

  .popup-para-1st,
  .popup-para-2nd {
    margin-bottom: 25px;
  }

  /* popup */
  /* popup */
  .what-we-believe-button-parent {
    margin-top: 0px;
  }

  .first-shadow {
    margin-bottom: 0px;
  }

  .radius-shadow {
    margin-bottom: 0px;
  }

  .extra-hour-heading-content h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 768px) / (1080 - 768)));
    margin-bottom: 30px;
  }

  .header .header-element .links-div .menu-items .menu .close-menu i {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #4B006E;
    box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
      0 -2px 5px rgba(128, 128, 128, 0.2), 2px 0 5px rgba(128, 128, 128, 0.2),
      -2px 0 5px rgba(128, 128, 128, 0.2);
    color: #fff;
    font-size: 25px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .what-we-believe-card ul li {
    font-size: calc(16px + (18.0 - 16) * ((100vw - 340px) / (750 - 340)));
  }

  .navigation-buttons button {
    padding: 0px 2px;
  }

  .navigation-buttons button div {
    width: 32px;
    height: 32px;
    padding: 1px !important;
  }

  .quick-links ul li a {
    font-size: calc(14px + (18.0 - 14) * ((100vw - 751px) / (1080 - 751)));
  }

  .abt-mission .about-mission-wrap {
    flex-direction: column;
    width: 100%;
  }

  .abt-mission .about-mission-wrap .panel-grid-cell {
    width: 100% !important;
  }

  .abt-mission .about-mission-wrap {
    gap: 30px;
  }

  .abt-mission .mission-vision-wrap {
    gap: 30px;
  }

  .abt-mission {
    padding: 40px;
  }

  .about-our-purpose {
    padding: 40px;
    padding-top: 0px;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
    padding-left: 10px;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title h2::before {
    top: 10px;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title h2::after {
    left: 10px;
  }

  .abt-predict-wapper {
    padding: 0px 40px;
  }

  .abt-predict-sec .abt-predict-left h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  /* .abt-predict-sec .abt-predict-left {
    grid-template-columns: 75% auto;
  } */

  .trust-us-section.about-client-sec {
    padding-bottom: 50px;
  }

  .trust-us-section.about-client-sec {
    padding-top: 0px;
  }

  .abt-text-img-link {
    padding-bottom: 40px;
  }

  .about-client-sec .trust-us-heading-parent h6 {
    padding: 0px 0px 40px;
  }

  .our-partner-section {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .our-team-content {
    padding: 40px;
  }

  .our-team-content h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .team-member-profiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-member-profile-color-div:hover .profile-pic-div {
    transform: none;
    transition: 0.5s ease-out;
    z-index: 0;
  }

  .tablet-click-effect .toggler-button {
    transform: rotate(0deg);
    transition: 0.5s ease-out;
    z-index: 5;
  }

  .tablet-click-effect .profile-pic-div {
    transform: translate(0px, 300px) rotate(-15deg) !important;
    z-index: 5 !important;
  }

  .toggler-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    border-radius: 50px;
    background-color: #4B006E;
    transition: 0.5s ease-out;
    z-index: 3;
  }

  .tablet-click-effect .toggler-button {
    transform: rotate(0deg);
    transition: 0.5s ease-out;
    z-index: 5;
  }

  .tablet-click-effect .profile-pic-div {
    transform: translate(0px, 300px) rotate(-15deg) !important;
    z-index: 5 !important;
  }

  .our-team-page-banner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .our-team-diverse {
    padding: 40px;
    padding-bottom: 10px;
  }

  .our-team-diverse-main {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 50px !important;
    padding: 40px;
    padding-bottom: 10px;
  }

  .our-team-diverse-main h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .our-team-icon-text {
    padding: 12px;
  }

  .our-team-icon-text img {
    width: 22px;
    height: auto;
  }

  .our-team-icon-text h4 {
    margin-left: 10px;
  }

  .our-team-icon-text-sec>.panel-grid-cell:nth-child(1) {
    gap: 20px;
    margin-bottom: 0px;
  }

  .what-we-believe-top-sec h2,
  .what-we-believe-top-sec h1 {
    font-size: calc(34px + (48.0 - 34) * ((100vw - 751px) / (1080 - 751)));
  }

  .what-we-believe-top-sec {
    padding: 40px;
  }

  .what-we-believe-top-two-main {
    gap: 40px;
  }

  .basic-banner {
    padding: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    display: block;
  }

  .basic-page-content .privacy-policy-texts {
    padding: 40px;
    padding-top: 0px;
  }

  .term-policy {
    padding: 40px;
    padding-top: 0px;
  }

  .eco-system-section {
    padding: 40px;
    padding-bottom: 0px;
  }

  .tab-items {
    grid-template-columns: 35% 65%;
  }

  .horizontal-line {
    left: 25px;
    height: 92%;
  }

  .tab-button-content-pointer {
    left: 10px !important;
  }

  .tab-button-content-pointer img {
    margin-right: 10px;
  }

  .button-content {
    margin-left: 15px;
  }

  .tab-button-content .tab-button1 h3 {
    margin: 0px;
  }

  .title-right-asset h1,
  .title-right-asset h2 {
    border-bottom-right-radius: 30px;
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .first-section-kea {
    padding: 40px;
    padding-right: 0;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 0;
  }

  .title-paragraph-down-arrow {
    grid-column: 1 / span 2;
  }

  .first-section-kea-image-div {
    grid-column: 2;
  }

  .kea-home-slider-sec .home-logo-sec h4 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .kea-studies-main {
    grid-template-columns: 0.8fr 1.2fr !important;
  }

  .kea-studies-sec {
    padding: 40px;
  }

  .kea-studies-left-sec .kea-mobile-image img {
    width: 100%;
    margin-bottom: -150px;
  }

  .kea-virtual-title {
    padding: 140px 30px 0 40px;
  }

  .kea-title-mobile-show {
    display: block;
  }

  .kea-title-web-show h2 {
    display: none;
  }

  .kea-video-sec-title h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .kea-video-text-box {
    gap: 40px;
  }

  .kea-home-video-content-main-box {
    padding: 40px;
  }

  .kea-loading-image-title .panel-grid-cell {
    display: grid !important;
    grid-template-columns: 0.5fr 1.5fr !important;
    gap: 20px !important;
    align-items: center !important;
  }

  .kea-circle-image {
    margin-top: 12px;
  }

  .kea-circle-image img {
    min-width: 131px;
  }

  .kea-loading-image-title {
    margin-top: -16px;
  }

  .kea-employee-bottom-title {
    width: 100%;
    padding-bottom: 15px;
  }

  .first-section-contactus {
    grid-template-columns: 1fr;
    height: auto;
  }

  .top-heading-contactus {
    font-size: calc(34px + (48.0 - 34) * ((100vw - 751px) / (1080 - 751)));
    width: 55%;
  }

  .first-section-contactus h1 {
    padding: 40px;
    padding-bottom: 0px;
  }

  .first-section-map-div {
    height: 59vw;
  }

  .first-section-map-div .map-image {
    width: 65%;
  }

  .location-1 {
    grid-row: 4;
  }

  .location-1 .location-inside {
    left: calc(1.52vw - 60px);
    top: calc(2vw - 15px);
  }

  .location-4 {
    grid-column: 3;
    grid-row: 3;
  }

  .location-4 .location-inside {
    left: calc(1vw - 95px);
    top: calc(4vw - 10px);
  }

  .location-2 {
    grid-column: 3;
    grid-row: 6;
  }

  .location-2 .location-inside {
    left: calc(12.5vw - 50px);
    top: calc(3vw - 40px);
  }

  .location-3 {
    grid-column: 4;
    grid-row: 8;
  }

  .location-3 .location-inside {
    left: calc(4vw - 35px);
    top: calc(3vw - 30px);
  }

  .page-template-Contact {
    background: radial-gradient(60% 17% at 60% 17%, #F6E2FF 22.5%, rgba(255, 255, 255, 0.00) 100%);
  }

  .contact-form-sec-main {
    padding: 40px;
    padding-top: 0;
    grid-template-columns: 1.2fr 0.8fr !important;
  }

  .contact-form-sec-main .contact-form-sec-left-main {
    padding-right: 120px;
  }

  .contact-form-sec-main .contact-details-main {
    background: #fff;
  }

  .contact-details h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .subit-btn {
    font-size: calc(14px + (18.0 - 14) * ((100vw - 751px) / (1080 - 751))) !important;
    padding: 8px 12px !important;
    padding-right: 40px !important;
    height: 38px;
  }

  .subit-btn-wrapper::before {
    width: 28px;
    height: 28px;
    background-size: 16px;
    top: 5px;
    right: 4px;
  }

  /* insight-all start */
  .insight-all-banner {
    padding: 40px;
    padding-right: 0;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .insight-all-banner .tag-buttons-blog-title {
    padding: 25px 40px;
  }

  .banner-section.careers-page-banner .first-section-image-div {
    height: 100%;
  }

  .banner-section.careers-page-banner .first-section-image-div img {
    height: 100%;
    object-fit: cover;
    object-position: left;
  }

  .blog-search-section {
    padding: 20px 40px 20px 40px;
  }

  .search-button {
    transform: translateX(16px);
  }

  .blogs-section {
    padding: 40px;
  }

  .all-blogs {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pagination-blog {
    padding: 40px;
  }

  /* insight-all end */

  /* Insight-blog-details start */
  .blog-title-part {
    padding: 40px;
  }

  .insight-blog-details {
    padding: 40px 100px 40px 100px;
  }

  .first-details-blog .blog-detail-heading h3 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  /* Insight-blog-details end*/

  /* faq start */
  .faq-first-section {
    padding: 40px;
  }

  .faq-accordion-section .accordion-item {
    padding: 20px;
  }

  /* faq end */

  .careers-page-banner h3 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .second-section-careers {
    padding: 40px;
    gap: 60px;
  }

  .second-section-careers h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .kea-success-heading .textwidget {
    padding: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kea-success-heading .textwidget h1 {
    font-size: calc(34px + (48.0 - 34) * ((100vw - 751px) / (1080 - 751)));
  }

  .career-slider-section .title-scroll-arrows h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .career-slider-section .title-scroll-arrows {
    padding: 0px 40px 40px 40px;
  }

  .form-career-section .career-contact-left {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 600;
  }

  .form-career-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .current-opening h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .job-listing {
    margin-top: 60px;
    padding: 200px 0px;
  }

  .pricing-main-section {
    padding: 40px;
    padding-right: 0px;
  }

  .pricing-part {
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    flex-direction: row;
    gap: 20px;
    overflow: hidden;
  }

  .slider-controls {
    padding-right: 30px;
  }

  .pricing-get-touch .our-team-diverse-main {
    gap: 0px !important;
    grid-template-columns: 1.2fr 0.8fr !important;
  }

  .feature-keaTop-sec .panel-grid {
    padding: 40px;
    padding-bottom: 0px;
    gap: 60px !important;
  }

  .feature-keaTop-sec .top-feature-img img {
    width: 100%;
  }

  .feature-kea-left-right-sec {
    padding: 40px;
    padding-top: 60px;
    gap: 60px !important;
  }

  .feature-kea-left-right-sec .feature-kea-left-right-video video,
  .feature-kea-left-right-sec .feature-kea-left-right-video img {
    width: 100% !important;
  }

  .feature-kea-left-right-sec .feature-kea-left-right-content h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .feat-kea-secure-section {
    padding: 40px;
  }

  .feat-kea-secure-section .secure-heading h2,
  .feat-kea-justAsk-section .feat-kea-justAsk-contentBox h2,
  .how-keaParrot-second-section .how-keaParrotTop-header h2,
  .how-keaParrot-accordionSection .how-keaParrotTop-header h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .feat-kea-secure-grid {
    gap: 40px !important;
  }

  .feat-kea-secure-cards {
    padding: 40px;
  }

  .feat-kea-justAsk-section .panel-grid {
    padding: 40px;
    padding-top: 50px;
    gap: 60px !important;
  }

  .feat-kea-justAsk-section .feat-kea-justAsk-img img {
    width: 100%;
  }

  .how-keaParrotTop-Section {
    padding: 40px;
  }

  .how-keaParrotTop-header .textwidget {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 45px;
  }

  .how-keaParrotTop-grid {
    gap: 40px !important;
  }

  .how-keaParrotTop-cards .how-keaParrotTop-Content p {
    width: 100%;
  }

  .how-keaParrotTop-cards {
    padding: 30px;
    padding-bottom: 80px;
  }

  .position-button-div .textwidget h3 {
    padding: 15px 25px;
  }

  .how-keaParrot-second-section {
    padding: 10px 40px;
  }

  .how-keaParrot-RealTime-Main {
    gap: 40px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .how-keaParrot-Video-section {
    padding: 20px 40px;
  }

  .how-keaParrot-accordion-tabs .ap-accordion-panel-header {
    padding: 20px !important;
  }

  .how-keaParrot-accordion-tabs .ap-accordion-title {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  .how-keaParrot-accordion-tabs .ap-accordion-panel-border {
    padding: 20px !important;
    padding-top: 0px !important;
  }

  .indiustryItems-first-section {
    padding: 40px 40px 0 0;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }

  .indiustryItems-first-section img {
    height: 400px;
    object-fit: cover;
    border-top-right-radius: 30px;
  }

  .indiustryItems-second-section {
    padding: 0px;
  }

  .study-reveal-outer-div {
    padding-right: 30px;
  }

  .heading-right-indiustryasset {
    padding-left: 40px;
    border-top-left-radius: 0px;
  }

  .heading-right-indiustryasset h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .card-percent-h1 {
    margin-bottom: 20px !important;
  }

  .card-second-sub-heading {
    padding-bottom: 0px;
  }

  .study-reveal-color-div {
    border-radius: 25px;
  }

  .table-area-of-focus {
    border-top-right-radius: 0px;
    padding: 40px;
    padding-top: 20px;
  }

  .card-image-heading p {
    margin-bottom: 25px !important;
  }

  .table-area-of-focus th h3 {
    margin: 0;
  }

  .table-area-of-focus td {
    padding-top: 20px;
  }

  .table-area-of-focus th {
    padding-left: 20px;
    padding-right: 20px;
  }

  .table-area-of-focus th:nth-child(1),
  .table-area-of-focus td:nth-child(1) {
    width: 26%;
    padding-right: 20px;
  }

  .table-area-of-focus td:nth-child(2) {
    padding: 20px;
  }

  .table-area-of-focus td:nth-child(2),
  .table-area-of-focus td:nth-child(3) {
    padding: 20px;
  }

  .industry-demo-video-section {
    padding: 0px 40px 0px 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-demo-video-section h2,
  .greater-asset-section h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .indiustryItems-scroll-section {
    padding: 80px 0 80px 0;
  }

  .greater-asset-section {
    padding-top: 80px;
    padding-bottom: 40px;
    background: radial-gradient(50% 50% at 50% 50%, #DCEAFF 0%, rgba(255, 255, 255, 0.00) 100%);
  }

  .greater-asset-section h2,
  .greater-asset-section h3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .greater-asset-section h2 {
    margin-bottom: 20px;
  }

  .greater-asset-section .slick-track {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .subscribe-input .subscribe {
    padding: 15px 20px 15px 20px;
    width: 150px;
    font-size: 14px;
  }

  .success-story-kia-bannner {
    padding: 40px !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .card-texts {
    padding: 20px;
  }

  .success-allBlogs {
    gap: 40px !important;
  }

  .card-texts .disappear-hover-text {
    width: calc(100% - 40px);
    left: 20px;
  }

  .our-partner-page-banner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .our-partner-page-banner .top-heading-banner {
    width: 55%;
  }

  .our-partner-page-banner .first-section-image-div {
    align-items: center;
  }

  .partner-slider-section .ow-button-align-center {
    padding-left: 40px;
    padding-top: 10px;
  }

  .partner-slider-section.trust-us-section h3 {
    padding-top: 60px;
  }

  .our-team-topNew-banner {
    padding-bottom: 40px;
  }

  .custom-submenu {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-link-div .demo-toggle-main {
    width: 100%;
  }

  .header .header-element .links-div .custom-root-ul .close-menu i {
    margin-bottom: 6px;
    font-size: 19px !important;
    width: 25px;
    height: 25px;
  }

  .header.feature-product-header .menu-kea-header-container {
    width: 100%;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left {
    background-color: #ffffffd5;
    backdrop-filter: blur(5px);
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    top: 0;
    padding-top: 60px;
    padding-left: 30px;
    z-index: 99;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left .menu-header-container {
    width: 100%;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left .menu {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    gap: 20px;
    background-color: transparent;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
    height: 0;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left .menu li a {
    font-size: 24px;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left .menu .close-menu {
    position: absolute;
    top: -40px;
    right: 30px;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left .menu .close-menu i {
    width: 35px;
    height: 35px;
    font-size: 29px !important;
  }

  .aboutUs-top-banner-sec .title-paragraph-down-arrow {
    grid-column: auto;
  }

  .what-we-believe-top-sec h1 {
    margin-bottom: 11px;
  }

  .what-we-believe-top-sec-img img {
    margin-top: 30px;
  }

  .about-client-sec .home-logo-sec {
    border-radius: 15px;
    max-width: 270px;
    height: 170px;
  }

  .kea-page-top-heading {
    width: 100%;
  }

  .first-section-parrorGpt {
    grid-template-rows: minmax(max-content, min-content);
    gap: 0px 60px;
    grid-template-columns: 0.6fr 1.4fr;
  }

  .first-section-parrorGpt .top-heading {
    grid-column: 1 / span 2;
  }

  .first-section-parrorGpt .first-section-kea-image-div {
    grid-column: 2;
    grid-row: 2;
  }

  .new-common-btn .ow-icon-placement-right,
  .light-dark-both-btn .ow-icon-placement-right {
    padding: 6px 19px 7px 11px !important;
  }

  .new-common-btn a .sow-icon-image,
  .light-dark-both-btn a .sow-icon-image {
    margin-left: 10px !important;
    width: 30px !important;
    height: 30px !important;
  }

  .tag-buttons-blog-title {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  .page-id-701 .page-content-wrapper h4,
  .page-id-30 .page-content-wrapper h4 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  .scroll-itemsKea h4 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .current-opening {
    padding: 40px;
  }

  .partner-slider-section .trust-us-heading-parent {
    padding: 20px 0px;
  }

  .partner-slider-section.trust-us-section h3,
  .believe-slider-section .trust-us-heading-parent h3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .believe-slider-section .trust-us-heading-parent {
    padding-left: 0;
    padding-right: 0;
  }

  .abt-predict-sec .abt-predict-left h2 {
    padding-right: 20px;
    padding-bottom: 20px;
    border-bottom-right-radius: 30px;
  }

  .abt-predict-sec .abt-predict-right {
    padding-left: 20px;
    padding-top: 20px;
    border-top-left-radius: 30px;
  }

  .contact-form input,
  .contact-form textarea {
    margin-bottom: 15px;
  }

  .address h3 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
  }

  .first-details-blog h3 {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }

  .simple-work-section {
    padding: 40px;
    padding-top: 10px;
  }

  .simple-work-kea-right-asset,
  .simple-work-kea-bottom-asset {
    border-top-left-radius: 25px;
  }

  .simple-work-parrotNew-right-asset,
  .simple-work-parrotNew-bottom-asset {
    border-top-left-radius: 30px;
  }

  .simple-work-image-div {
    padding: 40px 40px 120px 40px;
    gap: 60px;
  }

  .simple-paragraph-left-asset {
    width: 139%;
    border-radius: 30px;
    box-shadow: 10px 15px rgb(255, 255, 255);
  }

  .simple-paragraph {
    padding-top: 15px;
    padding-right: 15px;
    border-top-right-radius: 25px;
  }

  .curious-mind-section {
    padding: 40px;
    padding-bottom: 0;
  }

  .background-with-color {
    padding: 40px;
    gap: 40px;
    border-radius: 30px;
  }

  .hero-asset-curious {
    margin-top: -40px;
  }

  .display-desktop-heading {
    display: none;

  }

  .data-speak-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .title-scroll-arrows {
    padding: 0 40px 40px 40px;
  }

  .left-content-curious h2 {
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .simple-work-parrot-section {
    padding: 40px;
    padding-top: 20px;
  }

  .title-right-parrot-asset h2 {
    /* width: 41.6vw; */
    width: 41.6vw;
    border-bottom-right-radius: 30px;
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .simple-work-parrot-image-div {
    padding: 0 40px;
    gap: 60px;
  }

  .simple-parrot-paragraph-top-asset {
    border-bottom-left-radius: 30px;
  }

  .simple-parrot-paragraph-left-asset {
    border-bottom-left-radius: 25px;
    box-shadow: -10px 15px rgb(255, 255, 255);
  }

  .simple-parrot-paragraph {
    padding-top: 15px;
    padding-right: 15px;
    border-top-right-radius: 25px;
  }

  .simple-work-parrot-image-div .first-image-work-parrot {
    width: 100%;
  }

  .first-image-work-parrot,
  .second-image-work-parrot {
    width: 100% !important;
  }

  .features-map-section {
    padding: 40px;
    gap: 40px;
  }

  .slider-features-map {
    padding: 25px;
    padding-bottom: 0;
    border-radius: 30px;
  }

  .top-radius-asset-keaMain {
    border-bottom-right-radius: 30px;
  }

  .left-right-arrow-border-radius-asset-keaMain {
    margin-right: -25px;
  }

  h3.filter-class {
    font-size: calc(20px + (24.0 - 20) * ((100vw - 751px) / (1080 - 751)));
    font-weight: 700;
  }
}

/* mobile design code */
@media only screen and (max-width: 767px) {
  h4 {
    font-size: calc(18px + (20.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .banner-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .title-paragraph-down-arrow {
    padding-right: 40px;
  }

  .extra-hour-heading-content h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .extra-hour-hidden-content p {
    font-size: calc(16px + (18.0 - 16) * ((100vw - 340px) / (750 - 340)));
  }

  h1 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .top-heading {
    font-size: calc(32px + (46.0 - 32) * ((100vw - 340px) / (750 - 340)));

    margin-top: 0;
    width: 100%;
  }

  .top-heading-banner {
    font-size: calc(32px + (46.0 - 32) * ((100vw - 340px) / (750 - 340)));

    margin-top: 0;
    width: 100%;
  }

  h2 {

    font-size: calc(20px + (28.0 - 20) * ((100vw - 340px) / (750 - 340)));
    font-weight: 700;
  }

  h3 {

    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
    font-weight: 700;
  }

  .about-client-sec h4 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .about-client-sec .trust-us-heading-parent h6 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .main-paragraph {
    font-size: calc(16px + (18.0 - 16) * ((100vw - 340px) / (750 - 340)));
    line-height: 1.5;
    margin: 0;
  }


  .header-element p,
  .secondary-paragraph a,
  a p,
  button p,
  .footer-bottom p {
    font-size: calc(14px + (16.0 - 14) * ((100vw - 340px) / (750 - 340)));
  }

  /* header part */
  /* header part */

  .logo img {
    width: 12vw;
    min-width: 110px;
  }

  .data-speak-section .panel-grid-cell p {
    font-size: calc(16px + (18.0 - 16) * ((100vw - 340px) / (750 - 340)));
  }

  .links {
    flex-direction: row-reverse;
    align-items: center;

  }

  .menu-items,
  .kia-login,
  .parrot-login {
    display: none !important;
  }

  .hamburger-parent.hidden,
  .header-demo-button.hidden {
    display: flex;
  }

  .hamburger-button {

    padding: 9px;

  }

  .hamburger-button img {
    width: 13px;
  }

  .feature-product-header .hamburger-button img {
    width: 16px;
  }

  .logins {
    padding-right: 10px;
  }

  .logo::after {
    border-top-left-radius: 20px;
  }

  .logins::after {
    width: 20px;
    bottom: -37px;
    border-top-right-radius: 20px;
    box-shadow: 10px -6px 0 0 #F6E2FF;
  }

  /* header part */
  /* header part */

  /* first section */
  /* first section */

  .insight-items {
    gap: 0px;
  }

  .top-right-asset-div {
    display: none;
  }

  .top-arrow-after-heading {
    margin-top: 40px;
    display: block;
  }

  .top-arrow-after-heading .button {
    transform: rotate(90deg);
  }

  .first-section {
    background-position: right 10% bottom 80%;
  }

  .top-left-asset {
    min-width: 220px;
    top: calc(50vh + 40px);
    left: calc(40vw - 150px);
  }


  /* slider */
  /* slider */

  /* Container styling remains the same */
  .top-mobile-slider-parent {
    position: absolute;
    right: 10px;
    width: 45vw;
    height: calc(17vw + 80px);
    max-width: 245px;
    min-width: 195px;

    /* bottom: calc(10vw + 400px);
   */
    bottom: auto;
    top: clamp(215px, 10vw, 500px) !important;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;

  }

  .top-mobile-slider {
    width: 100%;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    display: block;
    height: 100%;


    position: relative;
  }

  .mobile-slider-image {
    width: 90%;

    border-radius: 20px;
    z-index: 5;


    position: absolute;
  }


  /* slider */
  /* slider */

  /* first section */
  /* first section */

  /* second-section */
  /* second-section */

  .card1 {
    width: 67vw;
    max-width: 260px;
    top: calc(16vw + 680px);
    bottom: auto;
    left: calc(9vw + 10px);
    right: auto;
    border-radius: 27px;
  }

  .card2 {
    width: 70vw;
    max-width: 280px;
    top: 850px;
    bottom: auto;
    left: 10px;
    right: auto;
    border-radius: 27px;
  }

  .second-section {
    display: block;
    height: auto;
  }

  .second-section-next-gen-video {
    display: block;
    width: max-content;
  }

  .second-section-next-gen {
    padding-left: clamp(40px, 1vw, 80px);
    padding-right: clamp(80px, 1vw, 100px);
  }

  .second-section-next-gen-outer-div,
  .mobile-background-blur {
    width: max-content;
    z-index: 3;
  }

  .mobile-background-blur {
    position: sticky;
    top: 0px;
    padding-top: 60px;
    z-index: 3;
    width: 97vw;
    background-color: #ffffff;
  }

  .second-sec-asset {
    display: none;
  }

  .mobile-assets {
    display: flex;
    justify-content: start;
    margin-top: -60px;
    align-items: start;

    z-index: 1;
  }

  .card-img {
    width: 50%;
    min-width: 140px;
  }

  .second-sec-asset-mobile-right,
  .second-sec-asset-mobile-left {
    display: block;
  }

  .left-two-asset {
    margin-left: 5vw;
  }

  .second-sec-asset-mobile-right {
    margin-right: 10vw;
  }

  .second-sec-asset-mobile-right-bottom {
    margin-top: -370px;
    margin-bottom: 220px;
  }

  /* second-section */
  /* second-section */

  /* trust us section */
  /* trust us section */
  /* trust us section */

  .trust-us-section {
    padding-bottom: 40px;
  }


  /* trust us section */
  /* trust us section */
  /* trust us section */

  /* what we believe */
  /* what we believe */
  .what-we-believe-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .what-we-believe-h1-inside-card {
    display: none;
  }

  .what-we-believe-h1-outside-card,
  .bottom-text {
    display: block;
  }

  .what-we-believe-h1-outside-card {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .conventional-heading,
  .we-believe-icon-text,
  .ai-integrated-heading {
    height: auto;
  }

  .we-believe-icon-text {
    margin-bottom: 20px;
  }

  .ai-integrated-heading {
    margin-top: 80px;
  }

  .what-we-believe-card {
    margin-top: 40px;
    padding: 30px;
    padding-bottom: 60px;
    background: conic-gradient(from -90deg, #F6E2FF, #4B006E);


    background: conic-gradient(from -90deg at 60% 42%, #F6E2FF, #4B006E);
  }

  .what-we-believe-button-parent {
    justify-content: end;
    position: relative;
    bottom: 57px;
    right: -1px;
  }

  .conventional-systems ul {
    margin-bottom: 70px;
  }

  .bottom-text .conventional-systems h3 {
    font-size: calc(20px + (28.0 - 20) * ((100vw - 340px) / (750 - 340)));
    margin-bottom: 10px;
    height: auto;
    font-weight: 400;
  }

  .ai-integrated-systems h3 {
    font-size: calc(20px + (28.0 - 20) * ((100vw - 340px) / (750 - 340)));
    height: auto;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .what-we-believe-button-div {
    border-top-right-radius: 0;
  }

  .second-shadow {
    display: block;
    background-color: rgba(255, 0, 0, 0);
    position: absolute;
    bottom: 57px;
    height: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 25px;
    box-shadow: 10px 10px 0 0 rgb(255, 255, 255);
  }

  /* what we believe */
  /* what we believe */



  /* extra hour */
  /* extra hour */
  .extra-hour-section-parent {
    padding: 40px;
  }

  .extra-hour-section {
    display: block;
  }

  .first-shadow-asset-tablet,
  .third-shadow-asset-tablet {
    display: none;
  }

  .second-shadow-asset-tablet {
    height: 80vw;
  }

  .extra-hour-heading-content {
    margin-right: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
    height: auto;
  }

  .extra-hour-content-parent {
    width: 100%;
    margin: 0;
    background-position: center center;
  }

  .button-white-background {
    padding-right: 0 !important;
  }

  /* extra hour */
  /* extra hour */



  /* tab content section */
  /* tab content section */
  .tabs {
    margin-left: 15px;
  }

  .tab-button {
    padding: 1px 10px;
    min-width: 60px;
  }

  .tab-button h3 {
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .slider {

    margin-left: 30px;
  }

  .tab-content.active {
    display: block;
  }

  .slider-paragraph {
    display: none;
  }

  .tab-content-button-div {
    padding: 30px;
  }

  .slider-parent {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-image {
    max-width: 400px;
  }

  .navigation-buttons {
    bottom: 0;
  }

  .navigation-buttons .button {
    padding: 0px;
  }

  .slider-card-left-arrow,
  .slider-card-right-arrow {
    width: 30px !important;
  }

  .tab-content-button-div .button svg {
    width: 28px;
    height: 28px;
  }

  .left-button {
    padding-right: 0px;

  }

  .right-button {
    padding-right: 0px;
  }



  /* tab content section */
  /* tab content section */


  /* data speak section */
  /* data speak section */
  .data-speaks-second {
    display: block;
    padding: 30px;
    margin-top: 40px;
  }

  .data-speak-section {
    padding-bottom: 40px;
  }

  .data-speaks-second .button {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .data-speak-second-image img {
    margin-top: 0px;
    max-width: 400px;
    width: 80%;
  }

  /* data speak section */
  /* data speak section */
  /* data speak section */





  /* about section */
  /* about section */

  .top-right-radius {
    display: none;
  }

  .top-radius-text {
    width: 100%;
    height: max-content;
    padding: 0;
  }

  .image-box {
    display: flex;
    flex-direction: column-reverse;
  }

  .top-radius-text-bundle {
    position: relative;
    margin-top: 0;

  }

  .about-heading-sub-heading-div,
  .we-love-converasation-h2,
  .we-love-converasation-h1,
  .about-paragraph {
    position: static;
    flex-direction: column;
    width: 100%;

  }

  .we-love-converasation-h1 {
    margin: 20px 0 40px 0;
  }

  .about-image {
    width: 100%;
    height: 350px;
    object-fit: none;
  }

  .absolute-button-div {
    bottom: 0;
  }

  /* about section */
  /* about section */

  /* insight section */
  /* insight section */

  .insight-section {
    padding-bottom: 60px;
  }

  .insight-items {

    grid-template-columns: repeat(1, 1fr);

  }

  /* insight section */
  /* insight section */


  /*mobile footer */
  /*mobile footer */

  .footer-about-contact-subscribe,
  .footer-address,
  .addresses-top {
    display: block;
  }

  .addresses-top .address {
    margin-bottom: 25px;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-top {
    padding-top: 60px;
  }

  .footer-bottom {
    display: block;
    padding: 40px;
    padding-top: 30px;
  }

  .copyright-terms .copyrightTops {
    display: block;
  }

  .footer-copyright-terms-divider {
    display: none;
  }

  .footer-copyright-terms-divider.footer-copyright-terms-dividerTwo {
    display: block;
  }

  .copyright-terms {
    display: block;
  }

  .line-break {
    display: block;
  }

  .terms-condition {
    margin: 15px 0 15px 0;
  }

  .footer-top,
  .address-quick-links-footer-footer {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .footer-about-contact p {
    margin-bottom: 40px;
  }

  .contact-social,
  .contact-social {
    margin-top: 40px;
  }

  .contact-social div {
    margin-bottom: 0;
  }

  .bottom-sticky-contact-button {
    bottom: 10px;
  }


  /* popup */
  /* popup */

  .popup {
    padding: 20px;
    margin: 20px;
    width: 100%;

    min-width: 0px;
  }

  .popup h2 {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .top-radius-text {
    height: 160px;
  }

  .conventional-system {
    padding: 10px 25px;
    padding-top: 160px;
  }

  .conventional-system .bg-purple {
    background: conic-gradient(from 270deg, #F6E2FF, #4B006E);
    margin: 0px 0px;
  }

  /* img.logo-slider-image {
    width: 50px;
    height: 50px;
  } */

  .conventional-system .bg-purple h2 {
    font-size: calc(20px + (36.0 - 26) * ((100vw - 340px) / (767 - 340)));
    margin-bottom: 0px;
    color: #000;
    position: relative;
    z-index: 0;
    margin-top: -170px;
    font-weight: 500;
    left: -15px;
  }

  .menu-items.active {
    display: flex !important;
  }

  .header .header-element .links-div .menu-items {
    background-color: #ffffffd5;
    backdrop-filter: blur(5px);
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    top: 0;
    padding-top: 80px;
    padding-left: 30px;
    z-index: 99;
  }

  .header .header-element .links-div .menu-items .menu-header-container {
    width: 100%;
  }

  .header .header-element .links-div .menu-items .menu {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    gap: 20px;
    background-color: transparent;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
    height: 0;
  }

  .header .header-element .links-div .menu-items .menu li a {
    font-size: 24px;
  }

  .header .header-element .links-div .menu-items .menu .close-menu {
    position: absolute;
    top: -40px;
    right: 30px;
  }

  .header .header-element .links-div .menu-items .menu .close-menu i {
    width: 35px;
    height: 35px;
    font-size: 29px !important;
  }

  .hide-desk {
    display: inline-flex;
    background: linear-gradient(to bottom, #DCEAFF, #ffff);
    box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2),
      /* Bottom shadow */
      0 -2px 5px rgba(128, 128, 128, 0.2),
      /* Top shadow */
      2px 0 5px rgba(128, 128, 128, 0.2),
      /* Right shadow */
      -2px 0 5px rgba(128, 128, 128, 0.2);
    padding: 6px 10px;
    border-radius: 100px;
    align-items: center;
    gap: 6px;
    width: fit-content;
  }

  .hide-desk .solution-child-menu {
    display: inline-flex;
    gap: 6px;
  }

  .hide-desk a {
    font-size: calc(16px + (18.0 - 16) * ((100vw - 340px) / (750 - 340))) !important;
    margin-top: -1px;
  }

  .hide-desk.parrot-menu {
    background: linear-gradient(to bottom, #FFF2D0, #ffff);
  }

  .sub-menu {
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 999;
    width: 100%;
    box-shadow: none;
    left: -2px;
  }

  .sub-menu .sol-child {
    margin-top: 5px;
    margin-bottom: 0px;
  }

  .trust-us-heading-parent h3 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .home-extra-mobile-btn {
    display: block !important;
  }

  .home-extra-desktop-btn {
    display: none;
  }

  .button .link-btn-sec {
    font-size: calc(14px + (16.0 - 14) * ((100vw - 340px) / (750 - 340)));
  }

  /* popup */
  /* popup */

  /*mobile footer */
  /*mobile footer */
  .abt-mission {
    padding: 40px;
  }

  .abt-mission .about-mission-wrap .panel-grid-cell {
    margin-bottom: 0px !important;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
    padding-left: 10px;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title {
    grid-template-columns: 100% auto;
  }

  .about-great-wrapper .about-great-inner .abt-great-sec-title h2::after,
  .about-great-wrapper .about-great-inner .abt-great-sec-title h2::before {
    display: none;
  }

  .about-great-wrapper .about-great-inner .panel-first-child {
    position: inherit;
    margin-bottom: 0 !important;
  }

  .abt-predict-sec .abt-predict-left h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .abt-predict-sec .abt-predict-right {
    max-width: 290px;
    max-width: 88%;
  }

  .top-heading-banner {
    /* margin-bottom: 26px; */
  }

  .our-partner-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .our-partner-section .first-section-image-div img {
    border-radius: 30px;
  }

  .our-team-content h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .team-member-profiles {
    grid-template-columns: repeat(1, 1fr);
  }

  .our-team-page-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .our-team-page-banner .first-section-image-div img {
    border-radius: 30px;
  }

  .our-team-diverse-main h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .our-team-diverse-image .sow-image-container {
    position: relative;
  }

  .our-team-diverse-main {
    padding: 30px;
    padding-bottom: 0px;
    gap: 0px !important;
    grid-template-columns: 1.7fr 0.3fr !important;
    overflow: hidden;
  }

  .our-team-diverse-image .sow-image-container img {
    position: absolute;
    top: -410px;
    left: -20px;
    width: 450%;
    max-width: 200px !important;
    width: 200px !important;
  }

  .our-team-icon-text-sec>.panel-grid-cell:nth-child(1) {
    flex-direction: column;
    align-items: flex-start;
  }

  .our-team-icon-text h4 {
    font-weight: 700;
    font-size: calc(18px + (20.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .what-we-believe-top-sec h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .what-we-believe-top-sec h1 {
    font-size: calc(32px + (46.0 - 32) * ((100vw - 340px) / (750 - 340)));
  }

  .what-we-believe-top-two-main {
    gap: 20px;
  }

  .what-we-believe-top-two-main .panel-grid-cell {
    margin-bottom: 0px !important;
  }

  .what-we-believe-top-sec-img img {
    margin-top: 10px;
  }


  .title-right-asset h1,
  .title-right-asset h2 {
    width: 54vw;
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .tab-button-0 {
    width: max-content;
  }

  .button-content {
    min-height: 400px;
  }

  .tab-image-content-mobile {
    margin-top: 20px;
    display: block;
  }

  .tab-image-content-mobile img {
    width: 100%;
    max-width: 400px;
  }

  .tab-image-content-mobile .image4-mobile {
    width: 100%;
    max-width: 300px;
  }

  .tab-image-content {
    display: none;
  }

  .tab-items {
    display: block;
    padding-top: 180px;
  }

  .horizontal-line {
    height: 86%;
  }

  .absolute-button-1,
  .absolute-button-2,
  .absolute-button-3,
  .absolute-button-4 {
    top: 180px;
    left: 10px !important;
  }

  .tab1-active.absolute-button-1 {
    top: 180px;
  }

  .tab1-active.absolute-button-2 {
    top: 639px;
  }

  .tab1-active.absolute-button-3 {
    top: 699px;
  }

  .tab1-active.absolute-button-4 {
    top: 758px;
  }


  .tab2-active.absolute-button-2 {
    top: 238px;
  }

  .tab2-active.absolute-button-3 {
    top: 699px;
  }

  .tab2-active.absolute-button-4 {
    top: 758px;
  }


  .tab3-active.absolute-button-2 {
    top: 238px;
  }

  .tab3-active.absolute-button-3 {
    top: 295px;
  }

  .tab3-active.absolute-button-4 {
    top: 752px;
  }

  .tab4-active.absolute-button-2 {
    top: 238px;
  }

  .tab4-active.absolute-button-3 {
    top: 295px;
  }

  .tab4-active.absolute-button-4 {
    top: 350px;
  }

  .tab4 {
    margin-top: 80px;
  }

  .kea-home-slider-sec .home-logo-sec h4 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .kea-studies-main {
    display: block !important;
  }

  .kea-studies-left-sec .kea-mobile-image img {
    margin-bottom: -30px;
    width: 90%;
  }

  .kea-virtual-title {
    padding: 0px;
  }

  .kea-loading-image-title .panel-grid-cell {
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    gap: 0px !important;
  }

  .kea-studies-right-sec::before {
    display: none;
  }

  .kea-employee {
    padding: 30px;
  }

  .kea-home-video-content-main-box {
    padding: 30px;
    border-radius: 25px;
  }

  .page-template-kia_home .logins::after,
  .FeatureKeaPage .logins::after {
    box-shadow: 10px -6px 0 0 #DCEAFF;
  }

  .page-template-parrot_home .logins::after,
  .FeatureParrotPage .logins::after {
    box-shadow: 10px -6px 0 0 #FFF2D0;
  }

  .kea-home-slider-sec .home-logo-sec {
    min-width: 270px;
  }

  .kea-video-sec-title h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .kea-video-text-box {
    gap: 0px;
  }

  .kea-parrot-video {
    margin-top: 0px;
  }

  .kea-studies-right-sec {
    padding: 0px;
    padding-bottom: 40px;
  }

  .top-heading-contactus {
    font-size: calc(32px + (46.0 - 32) * ((100vw - 340px) / (750 - 340)));
    margin-top: 0;
    width: 100%;
  }

  .top-heading-contactus,
  .color-background {
    width: auto;
  }


  .page-template-Contact {
    background: radial-gradient(60% 12% at 60% 12%, #F6E2FF 22.5%, rgba(255, 255, 255, 0.00) 100%);
  }

  .first-section-map-div {
    padding: 40px;
    padding-bottom: 100px;
  }

  .first-section-map-div {
    height: 70vw;
  }

  .first-section-map-div .map-image {
    width: 85%;
  }

  .location-1 {
    grid-row: 4;
  }

  .location-3 .location-text {
    right: -28%;
  }

  .location-text {
    left: -15%;
  }

  .location-1 .location-inside {
    left: calc(5vw - 100px);
    top: calc(1.2vw - 15px);
  }

  .location-4 .location-inside {
    left: calc(0.1vw - 80px);
  }

  .location-2 .location-inside {
    left: calc(18vw - 65px);
    top: calc(2vw - 40px);
  }

  .location-3 .location-inside {
    left: calc(12vw - 47px);
    top: calc(1vw - 28px);
  }

  .location-text h4 {
    text-wrap: wrap;
    font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
  }

  .location-inside:hover .location-text h4 {
    text-wrap: nowrap;
  }

  .location-2 .location-inside:hover .location-text p {
    width: 100px;
  }

  .contact-form-sec-main {
    grid-template-columns: 1fr !important;
    gap: 0px;
    padding-bottom: 60px;
  }

  .contact-form-sec-main .contact-form-sec-left-main {
    padding: 30px;
  }

  .contact-form-sec-main>.panel-grid-cell:nth-child(1) {
    width: auto !important;
    margin-bottom: 0px !important;
  }

  .contact-form input,
  .contact-form textarea {
    padding-top: 15px;
    width: 90%;
    padding-bottom: 15px;
  }

  .contact-form-sec-left-main h2 {
    font-weight: 700;
  }

  .contact-form-sec-main>.panel-grid-cell:nth-child(2) {
    margin-left: 0px;
  }

  .contact-form-sec-main .contact-details-main {
    padding: 0;
    padding-top: 70px;
  }

  .contact-details h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .contact-form-sec-main .contact-details-main::after,
  .contact-form-sec-main .contact-details-main::before {
    display: none;
  }

  .subit-btn {
    font-size: calc(14px + (16.0 - 14) * ((100vw - 340px) / (750 - 340))) !important;
  }

  .insight-all-banner {
    grid-template-columns: 1fr;
    padding-right: 40px;
    gap: 14px;
  }

  .careers-page-banner {
    padding-right: 0;
  }

  .insight-all-banner .first-section-image-div {
    min-height: 300px;
  }

  .insight-all-banner .first-section-image-div img {
    border-radius: 20px;
    height: 300px;
    object-fit: cover;
  }

  .careers-page-banner .first-section-image-div img {
    border-radius: 30px 0px 0px 30px;
  }

  .all-blogs {
    grid-template-columns: 1fr;
  }

  .blog-search-section {
    position: fixed;
    width: calc(100% - 80px);
    right: 0;
    top: 60px;
  }

  .search-button {
    padding: 5px;
  }

  .search-button img {
    width: 30px;
  }

  .first-details-blog .blog-detail-heading {
    display: none;
  }

  .first-details-blog {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }

  .blog-title-part h1 {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .insight-blog-details {
    padding: 40px;
    padding-top: 0;
  }

  .get-in-touch {
    margin-top: 20px;
    padding: 40px;
    padding-top: 50px;
  }

  .author-publish-date {
    flex-direction: column;
    align-items: start;
  }

  .first-vertical-line {
    display: none;
  }

  .share-button-author-details {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .careers-page-banner h3 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .second-section-careers {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }

  .text-animation-section {
    height: 90vw;
  }

  .second-section-careers .color-text {
    margin-bottom: 10px;
    grid-row: 1;
  }

  .second-section-careers h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .kea-success-heading .textwidget h1 {
    font-size: calc(32px + (46.0 - 32) * ((100vw - 340px) / (750 - 340)));
  }

  .career-faq-section {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .career-slider-section .title-scroll-arrows h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .career-slider-section .title-scroll-arrows {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 25px;
  }

  .form-career-section .career-contact-left {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .custom-upload-wrapper .custom-upload-label {
    padding-top: 15px;
    width: 90%;
    padding-bottom: 15px;
  }

  .current-opening h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .pricing-part {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .pricing-main-section .top-heading {
    width: calc(100% - 40px);
  }

  .pricing-get-touch .our-team-diverse-main {
    display: block !important;
  }

  .pricing-get-touch .our-team-diverse-image .sow-image-container img {
    position: inherit;
    top: inherit;
    left: inherit;
    margin-top: 12px;
    max-width: 400px !important;
    width: 80% !important;
    margin-left: auto;
    margin-bottom: 35px;
  }

  .feature-kea-left-right-sec {
    grid-template-columns: 1fr !important;
    padding-bottom: 20px;
  }

  .feature-kea-left-right-sec .panel-grid-cell,
  .feat-kea-secure-grid .panel-grid-cell,
  .feat-kea-justAsk-section .panel-grid-cell {
    margin: 0px !important;
  }

  .featKea-imgVideo-down>.panel-grid-cell:nth-child(1) {
    grid-row: 2;
  }

  .feature-keaTop-sec .panel-grid,
  .feat-kea-secure-grid,
  .feat-kea-justAsk-section .panel-grid,
  .how-keaParrotTop-grid,
  .how-keaParrot-RealTime-Main {
    grid-template-columns: 1fr !important;
  }

  .feature-kea-left-right-sec .feature-kea-left-right-content h2,
  .feat-kea-secure-section .secure-heading h2,
  .feat-kea-justAsk-section .feat-kea-justAsk-contentBox h2,
  .how-keaParrot-second-section .how-keaParrotTop-header h2,
  .how-keaParrot-accordionSection .how-keaParrotTop-header h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .how-keaParrot-accordion-tabs .ap-accordion-title {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .indiustryItems-first-section {
    padding: 40px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .indiustryItems-first-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
    grid-row: 2;
  }

  .indiustryItems-headings .colored-h3 {
    margin-top: 0px;
  }

  .indiustryItems-second-section {
    margin: 0;
    padding: 0px;

  }

  .top-assets-indiustryheading {
    grid-template-columns: 1fr;
  }

  .heading-right-indiustryasset {
    padding-right: 40px;
    border-radius: 0;
    padding-top: 240px;
  }

  .indiustryItems-second-section .right-indiustryasset {
    display: none;
  }

  .study-reveal-outer-div {
    margin-bottom: -200px;
    padding: 40px;
    background-color: transparent !important;
  }

  .study-reveal-outer-div {
    grid-row: 1;
  }

  .study-reveal-color-div {
    border-radius: 25px;
  }

  .study-reveal-color-div .tall-border-radius-bottom {
    box-shadow: 1px 25px 0 0 #DCEAFF;
  }

  .study-reveal-color-div .border-radius {
    box-shadow: 10px 17px 0 0 #DCEAFF;
  }

  .study-reveal-color-div .button-white-background {
    background-color: #DCEAFF;
    box-shadow: #DCEAFF 2px 2px 2px;
  }

  .heading-right-indiustryasset h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .table-area-of-focus {
    padding-bottom: 0px;
  }

  .table-are-concern-solution {
    margin-top: 10px;
    padding: 0;
  }

  .table-area-of-focus table {
    display: block;
  }

  .table-area-of-focus table thead,
  .table-area-of-focus table tr:first-child {
    display: none;
    /* Hide the header row */
  }

  .table-area-of-focus table tr {
    display: block;
    margin-bottom: 40px;
    padding: 0px;
  }

  .table-area-of-focus th,
  .table-area-of-focus td {
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .table-area-of-focus table td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0px solid white;
  }

  .table-area-of-focus table h4 {
    color: #B462A6;
    font-size: calc(22px + (26.0 - 20) * ((100vw - 340px) / (750 - 340)));
  }

  .table-area-of-focus table td:nth-child(2)::before {
    content: "Concern";
    font-size: calc(18px + (20.0 - 18) * ((100vw - 340px) / (750 - 340)));
    font-weight: bold;
    display: block;
    margin: 25px 0 15px;
  }

  .table-area-of-focus table td:nth-child(3)::before {
    content: "Solution";

    font-size: calc(18px + (20.0 - 18) * ((100vw - 340px) / (750 - 340)));
    font-weight: bold;
    display: block;
    margin: 35px 0 15px;
  }

  .industry-demo-video-section h2,
  .greater-asset-section h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .indiustryItems-slider-items .scroll-item {
    padding: 30px;
    border-radius: 25px;
  }

  .our-partner-page-banner .top-heading-banner {
    width: 100%;
  }

  .our-partner-page-banner {
    padding-bottom: 0px;
  }

  .our-team-topNew-banner {
    padding-bottom: 10px;
  }

  .header-link-div .menu-items-active.d-none {
    display: none !important;
  }

  .header-link-div .menu-items-active {
    display: block !important;
  }


  .header-link-div .links {
    flex-direction: row;
  }

  .header.feature-product-header .header-element .links-div .menu-items-left {
    padding-top: 60px;
  }

  .menu-item.demo-button-item {
    order: 1;
  }

  .menu-item.demo-button-item .header-demo-button {
    display: inline-flex !important;
    color: #fff !important;
  }

  .menu-item.demo-button-item .header-demo-button:hover {
    color: #4B006E !important;
  }

  .mobileHide-demo-btn {
    display: none !important;
  }

  .kea-parrot-btn {
    display: block;
  }

  .kea-parrot-btn .kia-login,
  .kea-parrot-btn .parrot-login {
    display: flex !important;
  }

  .kea-parrot-btn {
    order: 1;
  }

  .kea-parrot-btn .kia-login p,
  .kea-parrot-btn .parrot-login p {
    display: block !important;
  }

  .kea-menu-group .solution-child-menu a {
    width: 0;
    opacity: 0;
    margin: 0;
    margin-right: 10px;
  }

  .aboutUs-top-banner-sec .title-paragraph-down-arrow {
    padding: 0;
    padding-right: 40px;
  }

  .first-section-parrorGpt .parrorGpt-spacing {
    padding: 0px 40px 40px;
  }

  .first-section-parrorGpt .kea-page-top-heading {
    padding-bottom: 0px;
  }

  .first-section-kea .top-arrow-after-heading {
    margin-top: 40px;
  }

  .page-id-701 .page-content-wrapper h4,
  .page-id-30 .page-content-wrapper h4 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .faq-accordion-section .tab h4 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 1001px) / (2200 - 1001)));
    font-weight: 700 !important;
  }

  .scroll-itemsKea {
    padding: 20px;
  }

  .scroll-itemsKea h4 {
    font-size: calc(18px + (20.0 - 18) * ((100vw - 340px) / (750 - 340)));
    min-height: 50px;
  }

  .heart-button img,
  .share-button img {
    width: 30px;
  }

  .abt-predict-sec .abt-predict-left {
    grid-template-columns: 85% auto;
  }

  .about-our-vision .our-mission-sec .panel-grid-cell {
    direction: rtl;
  }

  .mission-vision-section .mission-vision-content .main-paragraph.about-vision-content::before {
    content: "";
    position: absolute;
    top: -18px;
    left: inherit;
    right: -3px;
    width: 53px;
    height: 48px;
    background-color: #12032100;
    border-top-left-radius: 20px;
    box-shadow: -13px -19px rgb(255, 255, 255);
    transform: rotate(90deg);
  }

  .about-our-vision .our-mission-sec .panel-grid-cell .so-widget-sow-image {
    padding-left: 20px;
    padding-right: 0px;
    border-bottom-left-radius: 20px;
  }

  .about-our-vision .our-mission-sec .panel-grid-cell .so-widget-sow-image::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -45px;
    right: inherit;
    width: 50px;
    height: 40px;
    background-color: #12032100;
    border-top-left-radius: 20px;
    box-shadow: -20px -15px rgb(255 255 255);
    transform: rotate(90deg);
  }

  .about-our-vision .our-mission-sec .panel-grid-cell .panel-last-child {
    justify-content: end;
  }

  .abt-predict-sec {
    border-radius: 20px;
    min-height: 620px;
    background-color: #cfcfcf;
    /* background: linear-gradient(#a1a1a198, #a1a1a1); */
    background-repeat: no-repeat !important;
    background-size: 200%;
    background-position: center;
  }

  .abt-predict-sec .abt-predict-left h2::before {
    width: 50px;
    height: 50px;
    border-top-left-radius: 22px;
    right: -50px;
  }

  .abt-predict-sec .abt-predict-right::after {
    left: -50px;
    width: 50px;
    height: 60px;
    border-bottom-right-radius: 22px;
  }

  .page-id-701 .basic-banner,
  .page-id-30 .basic-banner,
  .page-id-701 .term-policy,
  .page-id-30 .term-policy {
    padding-left: 40px;
    padding-right: 40px;
  }

  .address h3 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
  }

  .first-details-blog h3 {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
    font-weight: 700;
  }

  .second-details-blog .title {
    display: none;
  }

  .background-colored-div {
    border-radius: 30px;
  }

  .simple-work-kea-right-asset,
  .simple-work-kea-bottom-asset {
    width: 60px;
  }

  .simple-work-image-div {
    background-image: url(./images/simple-work-keahome.png);
    background-repeat: no-repeat;
    background-position: center 130px;
    background-size: 72%;
    height: calc(110vw + 600px);
  }

  .simple-work-image-div img,
  .simple-paragraph-left-asset,
  .simple-paragraph-top-asset {
    display: none;
  }

  .simple-paragraph {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    border-radius: 30px;
    background-color: #362d5100;
  }

  .left-content-curious h2 {
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .background-with-color {
    display: flex;
    flex-direction: column-reverse;
    padding: 30px;
  }

  .left-content-curious .main-paragraph {
    margin-bottom: 20px;
  }

  .main-paragraph~br {
    display: none;
  }

  .hero-asset-curious {
    margin-top: -30px;
  }

  .right-asset-curious {
    order: 2;
  }

  .title-right-parrot-asset h2 {
    width: 56vw;
    font-size: calc(26px + (36.0 - 26) * ((100vw - 340px) / (750 - 340)));
  }

  .simple-work-parrotNew-right-asset,
  .simple-work-parrotNew-bottom-asset {
    width: 60px;
  }

  .simple-work-parrot-image-div {
    grid-template-columns: 1fr;
    margin: 0;
    margin-top: -20px;
    margin-bottom: -20px;
    gap: 30px;
    padding: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .features-map-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .right-keaMain-texts .main-paragraph {
    margin-bottom: 30px;
  }

  .right-keaMain-texts h1,
  .right-keaMain-texts h2 {
    margin-bottom: 2rem !important;
  }

  .about-our-purpose img {
    max-width: 100% !important;
    min-width: 100%;
  }

  .about-our-purpose .sow-image-grid-image {
    padding: 0 !important;
  }

  h3.filter-class {
    font-size: calc(18px + (24.0 - 18) * ((100vw - 340px) / (750 - 340)));
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .bg-image-sec .right-sec-content {
    transform: none;
    width: auto;
    padding: 0px;

  }

  .bg-image-sec .left-sec-content {
    transform: none;
    width: auto;
    padding: 0px;
  }

  /* .home-logo-sec {
    width: 70px;
  } */

  .home-kea-slider .swiper-button-prev.kea-prev,
  .home-kea-slider .swiper-button-next.kea-next {
    bottom: 49px;
  }

  .sub-menu .sol-child .solution-child-menu {
    min-height: 149px;
    max-height: 149px;
  }

  .sub-menu .sol-child .solution-child-menu::before {
    width: 77%;
    height: 100px;
  }

  .sub-menu .sol-child .solution-child-menu-top {
    max-width: 125px;
  }

  .sub-menu .sol-child .solution-child-menu a {
    width: 134px;
  }

  .sub-menu .sol-child .solution-child-menu::after {
    bottom: -6px;
    right: 36px;
  }

  section.first-section:before {
    display: none;
  }

  .first-section {
    background-image: url('images/newfile.gif') !important;
  }

  .quick-links ul li a {
    font-size: calc(14px + (16.0 - 14) * ((100vw - 340px) / (750 - 340)));
  }

  .footer-subscribe h2 {
    margin-bottom: 18px;
  }

  .subscribe-input input {
    font-size: 14px;
    padding-right: 2px;
  }

  /* .subscribe-input .subscribe {
    padding: 15px 30px 15px 30px;
    width: fit-content;
    font-size: 14px;
    margin-top: 10px;
  } */

  /* .mobile-slider-image{
    width: 70%;
  } */

  .first-section-kea {
    display: flex;
    flex-direction: column;
    min-height: 900px;
    padding: 0;
    padding-top: 40px;
  }

  .title-paragraph-down-arrow {
    padding: 40px;
    padding-top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1190px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .menu-items {
    padding: 0;
  }

  .menu-items .menu-header-container {
    width: 100%;
  }

  .header .header-element .links-div .menu-items .menu {
    width: 100%;
    justify-content: space-between;
    height: 36px;
    padding-top: 2px;
    min-width: auto;
  }

  .header .header-element .links-div .menu-items .menu li:last-child {
    margin-right: 0px;
  }

  .close-menu a i {
    font-size: 28px !important;
    position: relative;
    top: 5px;
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(128, 128, 128, 0.2), 0 -2px 5px rgba(128, 128, 128, 0.2), 2px 0 5px rgba(128, 128, 128, 0.2), -2px 0 5px rgba(128, 128, 128, 0.2); */
    border-radius: 50%;
    color: #4B006E;
  }

  .we-love-converasation-h2 h2 {
    position: relative;
    top: 110px;
  }

  .data-speak-section {
    /* padding-bottom: 0px; */
  }

  .love-econversion .panel-first-child .top-radius-text .we-love-converasation-h1 .siteorigin-widget-tinymce.textwidget h2 {
    position: relative;
    top: 105px;
    padding-left: 0;
    font-size: calc(30px + (42.0 - 30) * ((100vw - 751px) / (1080 - 751)));
  }

  .love-econversion .sow-image-container img {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .first-section-map-div {
    height: 62vw;
  }
}

@media only screen and (min-width: 360px) and (max-width: 440px) {
  .first-section-map-div {
    height: 89vw;
  }
}