@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --cyan-blue: #84a4bb;
  --dark-grey: #3b3b3b;
  --blueDC: #bbbddc;
  --light-grey: #eeeeee;
}

:is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0px;
  height: fit-content;
  text-align: left;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

img {
  user-select: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

body {
  min-height: 100vh;
  text-align: left;
  scroll-behavior: smooth;
  background-color: var(--white);
  font-family: "Comfortaa", sans-serif;
}

.row {
  padding: 0;
  margin: 0;
}

/***************************** COMPONENT **************************/

h1 {
  color: var(--black);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 135.2%;
}

h2 {
  color: var(--black);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h3 {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  color: var(--black);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.72px;
}

p {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.hover_demo:hover {
  transform: scale(1.07);
}

/*********************** HOME PAGE *************************/

header {
  background-color: var(--black);
  padding: 26px 30px;
  padding-top: 44px;
  position: relative;

  position: sticky;
  top: 0;
  z-index: 999;
}

header .container-fluidss {
  max-width: 1348px;
  margin: auto;
}

header .header-flx {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
}

header .header-menu {
  max-width: 575px;
  width: 100%;
}

header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav ul a {
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

header nav ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/menu-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 8px;
  height: 5.5px;
  right: -20px;
  margin: auto;
  top: 10px;
  transition: all 0.3s;
}

header nav ul li:hover::before {
  transform: rotate(180deg);
}

/* header nav ul li:last-child::before {
  display: none;
} */

header nav ul a::after {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 0%;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  bottom: -10px;
  left: 0;
  transition: all 0.3s;
  z-index: 2;
}

header nav ul li:hover a::after {
  max-width: 100%;
  width: 100%;
}

header .header-btns {
  display: flex;
  align-items: center;
  gap: 23px;
  max-width: 350px;
  width: 100%;
}

header .see-demo {
  max-width: 134px;
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  color: var(--white) !important;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  border-radius: 2px;
  border: 1px solid #fff !important;
  background-color: var(--cyan-blue) !important;
  transition: all 0.5s;
}

header .early-access {
  max-width: 193px;
  width: 100%;
  height: 38px;
  border-radius: 2px;
  border: 1px solid #fff;
  padding: 0;

  color: var(--white) !important;
  background-color: var(--black) !important;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

header .early-access:hover {
  background-color: var(--cyan-blue) !important;
}

header nav ul li {
  position: relative;
}

header .sub-menu {
  position: absolute;
  top: 18px;
  width: 132px;
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 10px;
  left: -20px;
  align-items: start;

  background-color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 10px;

  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

header nav ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

header .sub-menu li a {
  font-size: 12px;
  text-transform: capitalize;
}

header .sub-menu li a::after {
  display: none;
}

header .sub-menu li::before {
  display: none;
}

header .main-logo {
  margin-top: -8px;
  max-width: 148px;
  width: 100%;
  height: 26.33px;
}

header .main-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-banner {
  padding: 0 30px;
  margin-top: -11px;
}

.home-banner .container-fluidss {
  max-width: 1474px;
  margin: auto;
}

.home-banner .h_flx {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  padding-left: 4%;
}

.home-banner .video-div {
  max-width: 700px;
  height: 584px;
}

.home-banner .video-div img,
.home-banner .video-div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner .text-wrapper {
  max-width: 615px;
}

.home-banner h1,
.home-banner h2 {
  text-align: left;
  text-transform: capitalize;
  position: relative;
  max-width: 546px;
}

.home-banner h2 {
  margin-top: 10px;
  line-height: 135.2%;
}

.home-banner h2::after {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 74%;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  bottom: -23px;
  left: 0;
  transition: all 0.7s;
}

.home-banner h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 56px;
  height: 33px;
  bottom: -24px;
  left: 76%;
  transition: all 0.7s;
}

.home-banner:hover h2::after {
  max-width: 117%;
  width: 130%;
  background-color: #84a4bb;
}

.home-banner:hover h2::before {
  left: 118%;
}

.home-banner .text {
  margin-top: 44px;
}

.home-how-works {
  background-color: var(--light-grey);
  padding: 57px 30px;
  padding-top: 87px;
  margin-top: -55px;
  mix-blend-mode: multiply;
}

.home-how-works .container-fluidss {
  max-width: 672px;
  margin: auto;
}

.home-how-works h2 {
  text-transform: capitalize;
}

.home-how-works .text {
  margin-top: 15px;
}

.home-how-works .text p:first-child {
  margin-top: 0;
}

.home-how-works .text p {
  text-align: center;
  line-height: 24px;
  margin-top: 25px;
}

.home-how-works h4 {
  margin-top: 33px;
}

.home-how-works ul {
  margin-top: 15px;
}

.home-how-works ul li {
  list-style: disc;
  line-height: 36px;
  font-weight: 500;
}

.home-how-works .btns {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.home-how-works .btns .btn {
  padding: 0;

  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.home-how-works .btns .get-start {
  max-width: 130px;
  width: 100%;
  height: 38px;
  border-radius: 2px;
  border: 1px solid #fff;
  background-color: var(--cyan-blue);
  color: var(--white);
}

.home-how-works .btns .learn-more {
  gap: 20px;
}

.home-how-works .btns .learn-more img {
  transition: all 0.5s;
}

.home-how-works .btns .learn-more:hover img {
  transform: translateX(9px);
}

.home-under-hood {
  margin-top: 75px;
  background-color: var(--light-grey);
  padding: 65px 30px;
  padding-top: 80px;
}

.home-under-hood .container-fluidss {
  max-width: 1286px;
  margin: auto;
}

.home-under-hood .h_flx {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  margin-left: -2%;
}

.home-under-hood .hood-img {
  max-width: 557px;
  width: 100%;
  height: 328px;
  border-radius: 58px;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-top: 23px;
}

.home-under-hood .hood-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s;
}

.home-under-hood .hood-img:hover img {
  transform: scale(1.11);
}

.home-under-hood .text-wrapper {
  max-width: 614px;
  width: 100%;
}

.home-under-hood span {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.28px;
}

.home-under-hood h3 {
  margin-top: 13px;
  position: relative;
  text-transform: uppercase;
}

.home-under-hood h3 strong {
  font-weight: 500;
  text-transform: math-auto;
}

.home-under-hood h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 88%;
  width: 100%;
  height: 2px;
  background-color: #757474;
  bottom: -23px;
  left: 0;
}

.home-under-hood h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  left: 90%;
  bottom: -23px;
}

.home-under-hood .text {
  margin-top: 45px;
  max-width: 435px;
}

.home-under-hood .text p {
  line-height: 24px;
  margin-top: 30px;
}

.home-under-hood .text p:first-child {
  margin-top: 0;
}

.home-under-hood .btns {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.home-under-hood .btns .btn {
  color: var(--white);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  border-radius: 2px;
  border: 0.7px solid #fff;
  height: 39px;
  transition: all 0.5s;
}

.home-under-hood .btns .read-more {
  max-width: 145px;
  width: 100%;
  background-color: var(--cyan-blue);
}

.home-under-hood .btns .partner {
  max-width: 213px;
  width: 100%;
  background-color: #3b3b3b;
}

footer {
  background-color: var(--black);
  padding: 33px 30px;
  padding-left: 6%;
}

footer .container-fluidss {
  max-width: 1434px;
  margin: auto;
}

footer .top-footer .f_flx {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

footer .footer-links {
  max-width: 940px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

footer .footer-logo {
  max-width: 226px;
  height: 40px;
  margin-top: 15px;
}

footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .footer-links h6 {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 15px;
}

footer .footer-links h6::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 46px;
  height: 1px;
  background-color: var(--white);
  bottom: 0;
  left: 0;
}

footer .footer-links a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

footer .social-icon {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}

footer .top-footer {
  border-bottom: 1px solid #fff;
  padding-bottom: 29px;
  padding-right: 60px;
  position: relative;
  margin-right: 3%;
}

footer .top-footer::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  bottom: -3px;
  right: -66px;
  filter: invert(1) brightness(5);
}

footer .bottom-footer {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

footer .bottom-footer p,
footer .bottom-footer a {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .bottom-footer a {
  text-decoration: underline;
}

.home-our-encrypted {
  margin-top: 104px;
  padding: 0 30px;
}

.home-our-encrypted .container-fluidss {
  max-width: 1348px;
  margin: auto;
}

.home-our-encrypted .h_flx {
  display: flex;
  gap: 80px;
  align-items: center;
}

.home-our-encrypted .text-item {
  max-width: 850px;
}

.home-our-encrypted .text-item h2 {
  text-transform: capitalize;
  position: relative;
  text-align: left;
  margin-bottom: 40px;
}

.home-our-encrypted .text-item h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 94%;
  height: 2px;
  background-color: #757474;
  bottom: -21px;
  left: 0;
}

.home-our-encrypted .text-item h2::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  bottom: -21px;
  left: 95%;
}

.home-our-encrypted .text-item p {
  color: var(--black);
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 25px;
}

.home-our-encrypted .cards {
  margin-top: 55px;
}

.home-our-encrypted .cards h6 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.home-our-encrypted .cards .c_flx {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-our-encrypted .cards .item {
  max-width: 191px;
  width: 100%;
  height: 321px;
  padding: 29px 14px;
  padding-right: 12px;

  border-radius: 45px;
  background-color: var(--white);
  position: relative;
  /* box-shadow: -2px -2px 14px 0px rgba(0, 0, 0, 0.25); */
}

.home-our-encrypted .cards .item::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  box-shadow: -2px -2px 14px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  top: 0;
  left: 0;
}

.home-our-encrypted .cards .item:hover::before {
  transform: scale(1.05);
}

.home-our-encrypted .cards .item img {
  max-width: 165px;
  width: 100%;
  height: 164px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.home-our-encrypted .cards .item p {
  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.64px;
  text-transform: capitalize;
  margin-top: 52px;
  padding-left: 10px;
  position: relative;
  z-index: 1;
}

::file-selector-button {
  font: inherit;
  /* -webkit-appearance: button; */
  position: absolute;
  bottom: -24px;
}

.home-our-encrypted .script-wrapper {
  max-width: 410px;
  width: 100%;
  height: 499px;
  border-radius: 45px;
  background-color: #fff;
  position: relative;
  padding: 44px 44px;
  padding-bottom: 28px;
  top: 15px;
}

.home-our-encrypted .script-wrapper::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  box-shadow: -2px -2px 14px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  top: 0;
  left: 0;
}

.home-our-encrypted .script-wrapper:hover::before {
  transform: scale(1.05);
}

.home-our-encrypted .script-wrapper h6 {
  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.home-our-encrypted .script-wrapper p {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.home-our-encrypted .script-wrapper canvas {
  width: 100%;
  height: 292px;
  border-radius: 2px;
  border: 1px solid #000;
  background: var(--white);
  position: relative;
  margin-top: 15px;
}

.home-our-encrypted .script-wrapper::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/pen_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 41px;
  height: 42px;
  top: 125px;
  right: 52px;
}

.encrypt-infer {
  display: inline-block;
  background-color: var(--blueDC) !important;

  padding: 11.5px 17px;
  border-radius: 2px;

  position: relative;
  overflow: hidden;
  transition: all 0.5s;

  color: var(--black);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 15px;
}

.encrypt-infer input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Hides the default file input button */
  cursor: pointer;
}

/********************************** TECHNOLOGY PAGE ***********************************/

.technology_overview {
  margin-top: 40px;
  padding: 0 30px;
}

.technology_overview .container-fluidss {
  max-width: 845px;
  margin: auto;
}

.technology_overview span {
  color: var(--black);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.technology_overview h1 {
  font-weight: 400;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
}

.technology_overview .text {
  margin-top: 15px;
}

.technology_overview .text p {
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.technology_overview .text.t1 p {
  margin-top: 25px;
}

.technology_overview .text.t1 p:first-child {
  margin-top: 0;
}

.technology_overview h6 {
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-top: 35px;
}

.tech_ai_inference {
  margin-top: 55px;
  background-color: var(--light-grey);
  padding: 75px 30px;
  padding-bottom: 88px;
}

.tech_ai_inference .container-fluidss {
  max-width: 1348px;
  margin: auto;
}

.tech_ai_inference h3 {
  font-weight: 400;
  line-height: normal;
  margin-bottom: 17px;
  text-align: center;
}

.tech_ai_inference p {
  line-height: 33px;
  font-weight: 400;
  text-align: center;
}

.tech_ai_inference .inference-step {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.tech_ai_inference .inference-step .item {
  width: 100%;
  padding: 19px 14px;
  padding-bottom: 24px;
  padding-left: 16px;
  border-radius: 30px;
  background-color: var(--white);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: all 0.7s;
}

.tech_ai_inference .inference-step .item:hover {
  background-color: rgba(196, 200, 255, 0.37);
}

.tech_ai_inference .inference-step .item img {
  max-width: 265px;
  width: 100%;
  margin: auto;
  height: 218px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tech_ai_inference .inference-step .item h6 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  position: relative;
}

.tech_ai_inference .inference-step .item .text-wrapper {
  margin-top: 25px;
  padding-left: 19px;
  padding-right: 20px;
}

.tech_ai_inference .inference-step .item h6::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 43px;
  height: 2px;
  background-color: var(--black);
  bottom: -10px;
  left: 0;
}

.tech_ai_inference .inference-step .item h5 {
  color: var(--black);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.25px;
  margin-top: 35px;
  text-transform: uppercase;
  min-height: 90px;
}

.tech_ai_inference .inference-step .item .text {
  margin-top: 0;
}

.tech_ai_inference .inference-step .item p {
  line-height: normal;
  letter-spacing: 0.64px;
  font-weight: 400;
  text-align: left;
  margin-top: 25px;
}

.tech_ai_inference .inference-step .item p:first-child {
  margin-top: 0;
}

.tech_fhe_powerful {
  margin-top: 72px;
  padding: 0 30px;
}

.tech_fhe_powerful .container-fluidss {
  max-width: 1357px;
  margin: auto;
}

.tech_fhe_powerful h3 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.tech_fhe_powerful .container-fluidss > p {
  font-weight: 400;
  line-height: 33px;
  text-align: center;
  margin-top: 20px;
}

.fhe_powerful_cate {
  margin-top: 50px;
}

.fhe_powerful_cate .item {
  padding: 18px 111px 33px 121px;
  transition: all 0.5s;
  border-radius: 15px;
  margin-top: 36px;
}

.fhe_powerful_cate .item:first-child {
  margin-top: 0;
}

.fhe_powerful_cate .item:hover {
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.fhe_powerful_cate .item .i_flx {
  display: flex;
  align-items: center;
  gap: 135px;
}

.fhe_powerful_cate .item .img {
  max-width: 216px;
  width: 100%;
  height: 182px;
}

.fhe_powerful_cate .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fhe_powerful_cate .item h5 {
  color: var(--black);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.46px;
  text-transform: uppercase;
}

.fhe_powerful_cate .item .text {
  margin-top: 16px;
}

.fhe_powerful_cate .item p {
  font-weight: 400;
  line-height: 24px;
}

.tech_at_lattica {
  margin: 115px 0;
}

.tech_at_lattica .tech_fhe_powerful {
  margin: 0;
}

.tech_at_lattica .tech_fhe_powerful .container-fluidss > p {
  max-width: 995px;
  margin: auto;
  line-height: 24px;
}

.about_lattica {
  margin-top: 84px;
}

.about_lattica .top-text {
  max-width: 755px;
  margin: auto;
  padding: 0 30px;
}

.about_lattica h1 {
  text-transform: capitalize;
  text-align: center;
  line-height: normal;
  margin-bottom: 24px;
}

.about_lattica p {
  line-height: 24px;
  font-weight: 400;
}

.about_lattica .top-text p {
  text-align: center;
  font-weight: 500;
}

.about_lattica .about_detail {
  margin-top: 123px;
  padding: 0 30px;
}

.about_lattica .about_detail .a_flx {
  display: flex;
  align-items: center;
  gap: 52px;
  justify-content: space-between;
  max-width: 1348px;
  margin: auto;
}

.about_lattica .about_detail .img {
  max-width: 618px;
  height: 394px;
  width: 100%;

  border-radius: 66px;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about_lattica .about_detail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: all 0.7s;
}

.about_lattica .about_detail .img:hover img {
  transform: scale(1.11);
}

.about_lattica .about_detail .text-wrapper {
  max-width: 675px;
}

.about_lattica .about_detail .text {
  margin-top: 45px;
}

.about_lattica .about_detail .text p {
  margin-top: 25px;
}

.about_lattica .about_detail .text p:first-child {
  margin-top: 0;
}

.about_lattica .about_detail h6 {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  text-transform: capitalize;
}

.about_lattica .about_detail h6::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  bottom: -16px;
  left: 30%;
}

.about_lattica .about_detail h6::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #757474;
  bottom: -15px;
  left: 0;
}

.about_lattica .about_detail.our-story h6::before {
  max-width: 193px;
}

.about_lattica .about_detail.our-approach {
  margin-top: 55px;
}

.about_lattica .about_detail.bg-color {
  background-color: var(--light-grey);
  padding: 50px 30px;
}

.about_lattica .about_detail.our-approach .text-wrapper {
  max-width: 650px;
}

.about_lattica .about_detail.our-approach ul {
  margin-top: 25px;
  padding-left: 25px;
}

.about_lattica .about_detail.our-approach ul li {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
  list-style: disc;
}

.about_lattica .about_detail.our-approach ul li strong {
  font-weight: 700;
}

.about_lattica .about_detail.our-approach h6::before {
  max-width: 291px;
}

.about_lattica .about_detail.our-approach h6::after {
  left: 46%;
}

.about_lattica .about_detail.our-team {
  margin-top: 67px;
}

.about_lattica .about_detail.our-team h6::before {
  max-width: 202px;
}

.about_lattica .about_detail.our-team h6::after {
  left: 31%;
}

.about_lattica .about_detail.our-team .img {
  max-width: 602px;
  height: 369px;
}

.about_lattica .about_detail.our-team .a_flx {
  align-items: start;
}

.about_lattica .about_detail.our-team .btn {
  padding: 0;

  max-width: 171px;
  width: 100%;
  height: 37px;
  border-radius: 2px;
  background-color: var(--blueDC);

  color: var(--white);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  margin-top: 25px;
}

.about_lattica .about_detail.our-team p {
  font-weight: 500;
}

.about_people {
  margin-top: 173px;
  padding: 0 30px;
}

.about_people .container-fluidss {
  max-width: 1350px;
  margin: auto;
}

.about_people .p_flx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  row-gap: 42px;
  margin-top: 45px;
}

.about_people .mem {
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
}

.about_people .mem .img {
  width: 100%;
  height: 231px;
  border-radius: 14px 14px 0px 0px;
  overflow: hidden;
}

.about_people .mem .img img {
  /*width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;*/
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: top;
  max-width: 100%;
  max-height: 100%;
}

.about_people .mem .text-wrapper {
  padding: 23px;
  padding-bottom: 15px;
  padding-top: 10px;
}

.about_people .mem h5 {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 53px;
  position: relative;
}

.about_people .mem h5::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 27px;
  height: 3px;
  background-color: #354465;
  bottom: 5px;
  left: 0;
}

.about_people .mem p {
  margin-top: 12px;
}

.about_people .mem .social {
  margin-top: 7px;
}

.about_people h2 {
  font-size: 45px;
  text-transform: capitalize;
}

.about_reviews {
  margin-top: 141px;
  padding: 0 30px;
}

.about_reviews .container-fluidss {
  max-width: 1276px;
  margin: auto;
}

.about_reviews .review-slider {
  margin-top: 45px;
  /* display: grid;
	grid-template-columns: repeat(3, 1fr); */
  gap: 44px;
}

.about_reviews .review-slider .item {
  border-radius: 14px;
  background: var(--white);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);

  padding: 33px 36px;
  padding-top: 93px;
  padding-right: 25px;
}

.about_reviews .review-slider p {
  line-height: 27px;
  position: relative;
}

.about_reviews .review-slider .item > p::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/review-quma.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 33px;
  height: 23px;
  left: 0;
  top: -50px;
}

.about_reviews .review-slider .mem-review {
  margin-top: 23px;
  padding-left: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about_reviews .review-slider .mem-review .img {
  width: 50px;
  height: 50px;
  background-color: #d9d9d9;
  border-radius: 100px;
  overflow: hidden;
}

.about_reviews .review-slider .mem-review .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about_reviews .review-slider .mem-review p {
  line-height: 23px;
  font-size: 14px;
}

.about_reviews .review-slider.slick-slider .slick-list {
  overflow: visible !important;
  overflow-x: clip !important;
}

.about_reviews .review-slider.slick-slider .item {
  margin: 0 15px;
}

.about_open_position {
  /* margin-top: 87px; */
  padding: 71px 30px;
  padding-bottom: 94px;
  background-color: var(--light-grey);
}

.work_positions .see_less {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.work_positions .show_less {
  display: none;
}

.about_open_position .container-fluidss {
  max-width: 1101px;
  margin: auto;
}

.about_open_position h2 {
  font-size: 45px;
  text-transform: capitalize;
}

.work_positions {
  margin-top: 59px;
}

.work_positions .w_posi h5 {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  text-transform: capitalize;
}

.work_positions .w_posi h5::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #757474;
  bottom: -15px;
}

.work_positions .w_posi h5::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  bottom: -16px;
  right: -6%;
}

.work_positions .w_posi p {
  color: var(--black);
  font-weight: 400;
  line-height: normal;
}

.work_positions .w_posi .work_cate {
  margin-top: 45px;
  margin-bottom: 15px;
}

.work_positions .w_posi .work_cate p {
  text-transform: capitalize;
}

.work_positions .w_posi .work_btns {
  margin-top: 25px;
  display: flex;
  gap: 21px;
}

.work_positions .w_posi .work_btns .btn {
  padding: 0;

  color: var(--white);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s;

  /* display: flex; */
  align-items: center;
  justify-content: center;

  height: 37px;
  width: 100%;
  border-radius: 2px;
}

.work_positions .w_posi .work_btns .apply {
  max-width: 112px;
  background-color: var(--blueDC);
  display: flex;
}

.work_positions .w_posi .work_btns .see_more {
  max-width: 171px;
  background-color: #3b3b3b;
  display: flex;
}

.work_positions .w_posi .work_btns .show_less {
  max-width: 112px;
  background-color: #3b3b3b;
}

.work_positions .w_posi:first-child {
  margin-top: 0;
}

.work_positions .w_posi {
  margin-top: 74px;
}

/* Modal Styles */
.apply_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.apply_modal .modal-content {
  background-color: var(--light-grey);
  margin: 9% auto;
  padding: 11px 13px;
  width: 100%;
  max-width: 445px;
  border-radius: 8px;
  position: relative;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  margin-right: 0;
  border-radius: 0;
}

.apply_modal .close {
  cursor: pointer;
  width: 12px;
  height: 12px;
  margin: auto;
  margin-right: 0;
}

.apply_modal .close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apply_modal h5 {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 17px;
}

.apply_modal form {
  margin-top: 12px;
  padding: 0 30px;
}

.apply_modal form .f_flx {
  display: flex;
  gap: 27px;
}

.apply_modal form input {
  width: 100%;
  height: 33px;
  border-radius: 5px;
  border: 0.4px solid #d9d9d9;
  background-color: var(--white);
  outline: unset;
}

.apply_modal form textarea {
  width: 100%;
  height: 105px;
  border-radius: 5px;
  border: 0.4px solid #d9d9d9;
  background-color: var(--white);
  resize: none;
  outline: unset;
}

.apply_modal form textarea,
.apply_modal form input {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0 15px;
}

.apply_modal form textarea {
  padding: 15px;
}

.apply_modal form .input_w {
  margin-top: 12px;
}

.apply_modal form label {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.apply_modal form label span {
  color: var(--blueDC);
}

.apply_modal .file-upload-container {
  padding: 11px;
  padding-top: 19px;
  border-radius: 5px;
  border: 0.4px solid #d9d9d9;
  background-color: var(--white);
  cursor: pointer;
}

.apply_modal .file-upload-container span {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 26px;
  color: var(--black);
}

.apply_modal .file-upload-container .file-input {
  padding: 0;
  border: none;
  display: none;
}

.apply_modal .file-upload-container .file-drop-area {
  width: 100%;
  cursor: pointer;
}

.apply_modal .file-upload-container .file-btn {
  max-width: 98px;
  width: 100%;
  height: 31px;

  border-radius: 5px;
  border: 1px solid #bbbddc;
  background-color: var(--white);

  color: var(--blueDC);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.apply_modal form .submit {
  padding: 0;
  max-width: 105px;
  width: 100%;
  height: 39px;
  margin: auto;
  margin-top: 5px;

  border-radius: 2px;
  border: 0.7px solid #000;
  background-color: var(--blueDC);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.apply_modal form .submit input {
  background-color: transparent;
  padding: 0;
  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.work_positions .w_posi .desc p {
  line-height: 26px;
}

.heal_banner {
  padding: 0 30px;
  padding-left: 11%;
}

.heal_banner .container-fluidss {
  max-width: 1546px;
  margin: 75px auto;
  margin-bottom: 85px;
}

.heal_banner .heal_img {
  max-width: 726px;
  width: 100%;
  height: 425px;
  border-radius: 66px;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heal_banner .heal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 98% 18%;
  transition: all 0.7s;

  width: auto;
  max-height: 397px;
}

.heal_banner .heal_img:hover img {
  transform: scale(1.11);
}

.heal_banner .h_flx {
  display: flex;
  /* align-items: center; */
  gap: 100px;
}

.heal_banner .text-wrapper {
  max-width: 800px;
  width: 100%;
}

.heal_banner h1 {
  font-size: 45px;
  line-height: 56px;
/*  text-transform: uppercase;*/
}

.heal_banner h2,
.platform_banner h1 {
  margin-top: 44px;
  text-align: left;
  line-height: 56px;
  position: relative;
}

.platform_banner h1 {
  font-size: 40px;
  line-height: normal;
  text-transform: capitalize;
}

.heal_banner h2::before,
.platform_banner h1::before {
  content: "";
  position: absolute;
  display: inline-block;
  /* max-width: 406px; */
  width: 51%;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: -15px;
  transition: all 1s;
}

.heal_banner h2::after,
.platform_banner h1::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  left: 52%;
  bottom: -16px;
  transition: all 1s;
}

.heal_banner:hover h2::before,
.platform_banner:hover h1::before {
  width: 82%;
}

.heal_banner:hover h2::after,
.platform_banner:hover h1::after {
  left: 83%;
}

.heal_banner .text {
  margin-top: 38px;
  max-width: 638px;
}

.platform_banner .heal_banner .text p {
  margin-top: 20px;
}

.platform_banner .heal_banner .text p:first-child {
  margin-top: 0;
}

.heal_banner p {
  line-height: 24px;
}

.heal_banner .btns {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.heal_banner .btns .btn {
  padding: 0;
  height: 39px;
  width: 100%;

  color: var(--white);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border-radius: 2px;
}

.heal_banner .btns .partner {
  max-width: 158px;
  background-color: var(--blueDC);
}

.heal_banner .btns .documentation {
  max-width: 194px;
  background-color: #3b3b3b;
}

.heal_acceleration {
  background-color: var(--light-grey);
  padding: 80px 30px;
}

.heal_acceleration .container-fluidss {
  max-width: 1350px;
  margin: auto;
}

.heal_acceleration .text-wrapper .text {
  max-width: 650px;
  margin: auto;
  margin-top: 15px;
}

.heal_acceleration .text-wrapper .text p {
  text-align: center;
  line-height: 24px;
}

.heal_acceleration .heal_stack {
  margin-top: 55px;
}

.heal_acceleration .heal_stack h5 {
  color: var(--black);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
}

.heal_acceleration .heal_stack > .s_flx {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.heal_acceleration .item_1 {
  max-width: 230px;
  width: 100%;
  border-radius: 17px;
  background-color: var(--blueDC);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 25px;
  padding-bottom: 28px;
}

.heal_acceleration .item_2 {
  max-width: 354px;
  width: 100%;
  border-radius: 17px;
  background-color: var(--blueDC);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.heal_acceleration .item_3 {
  max-width: 221px;
  width: 100%;
  border-radius: 17px;
  background-color: #99e5f4;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.heal_acceleration .item_4 {
  max-width: 58px;
  width: 100%;
}

.heal_acceleration .item_5 {
  max-width: 418px;
  width: 100%;
  border-radius: 17px;
  background-color: var(--blueDC);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.heal_acceleration .item > h6 {
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 2;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heal_acceleration .item_1 h6 {
  margin-bottom: 19px;
}

.heal_acceleration .item_1 .btn {
  max-width: 177px;
  height: 43px;
  width: 100%;
  padding: 0;
  background-color: #9a9bc6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s;
  margin: auto;
  margin-top: 25px;
  position: relative;
  z-index: 2;
  border-radius: 5px;
  border: unset;
  outline: unset;
}

.heal_acceleration .item_1 .btn:first-child {
  margin-top: 0;
}

.heal_acceleration .item_1 .btn:hover {
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.heal_acceleration .item {
  position: relative;
}

.heal_acceleration .item::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 0;
  border-radius: 17px;
  background-color: rgba(154, 155, 198, 0.48);
  top: 0;
  bottom: 0;
  left: 0;
  left: 0;
  margin: auto;
  transition: all 1s;
}

.heal_acceleration .item:hover::before {
  height: 100%;
}

.heal_acceleration .item_2 {
  padding: 12px 20px;
  padding-bottom: 37px;
}

.heal_acceleration .item_2 .software,
.heal_acceleration .item_2 > h6 {
  max-width: 258px;
  margin: auto;
}

.heal_acceleration .item_2 .software {
  margin-top: 26px;
}

.heal_acceleration .item_2 .software h6 {
  color: var(--black);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.68px;
  margin-bottom: 15px;
}

.heal_acceleration .item_2 .software .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
}

.heal_acceleration .item_2 .software .btn {
  padding: 0;
  max-width: 54px;
  width: 100%;
  height: 35px;
  border-radius: 5px;
  color: var(--white);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9a9bc6;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  outline: unset;
  border: unset;
}

.heal_acceleration .item_2 .software .btn:hover {
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

.heal_acceleration .item_2 .software.soft-2 .btn {
  max-width: 71px;
}

.heal_acceleration .item_3::before {
  background-color: rgba(84, 169, 180, 0.4);
}

.heal_acceleration .item_3 {
  padding: 12px 20px;
  padding-bottom: 28px;
  text-align: center;
}

.heal_acceleration .item_3 h6 {
  color: var(--black);
  text-align: center;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.97px;
}

.heal_acceleration .item_3 .text p {
  color: var(--black);
  text-align: center;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 35px;
}

.heal_acceleration .item_3 > img {
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.heal_acceleration .item_4::before {
  display: none;
}

.heal_acceleration .item_5 {
  padding: 12px 22px;
  padding-bottom: 34px;
}

.heal_acceleration .item_5 .it_flx {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.heal_acceleration .item_5 .text {
  max-width: 135px;
  width: 100%;
}

.heal_acceleration .item_5 .text p {
  color: #211e1f;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 19px;
  text-align: center;
}

.heal_acceleration .item_5 .text p:first-child {
  margin-top: 0;
}

.heal_acceleration .item_5 .grid_img .img {
  width: 87px;
  height: 87px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heal_acceleration .item_5 .grid_img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.heal_acceleration .item_5 .grid_img .img img.chip-2 {
  visibility: hidden;
  opacity: 0;
}

.heal_acceleration .item_5 .grid_img .img:hover img.chip-2 {
  visibility: visible;
  opacity: 1;
}

/* .heal_acceleration .item_5 .grid_img .img:hover img.chip-1 {
  visibility: hidden;
  opacity: 0;
} */

.heal_acceleration .item_5 .grid_img .img::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 49px;
  height: 48px;
  background-color: transparent;
  /* border: 2px solid transparent; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}

.heal_acceleration .item_5 .grid_img .img:hover::after {
  background-color: #acade4;
  /* border: 2px solid #000; */
}

.heal_acceleration .item_5 .grid_img .img p {
  color: var(--black);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.17px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.heal_acceleration .item_5 .grid_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  row-gap: 16px;
}

.heal_acceleration .item.item_4.arrows .imgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.item.item_4.arrows {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heal_hardware_venders {
  margin-top: 58px;
  padding: 0 30px;
}

.heal_hardware_venders .container-fluidss {
  max-width: 1380px;
  margin: auto;
}

.heal_hardware_venders .vender_flx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  gap: 67px;
}

.heal_hardware_venders h2 {
  text-transform: capitalize;
}

.heal_hardware_venders .i_img {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background-color: #d9d9d9;
}

.heal_hardware_venders .i_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heal_hardware_venders h6 {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-top: 34px;
  max-width: 285px;
}

.heal_hardware_venders .text {
  margin-top: 21px;
}

.heal_hardware_venders .text p {
  line-height: 24px;
}

.heal_get_started {
  margin-top: 175px;
}

.heal_get_started .container-fluidss {
  max-width: 1350px;
  margin: auto;
}

.heal_get_started .g_flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heal_get_started .g_img {
  max-width: 536px;
  height: 536px;
  width: 100%;

  border-radius: 66px;
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.heal_get_started .g_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.7s;
}

.heal_get_started .g_img:hover img {
  transform: scale(1.11);
}

.heal_get_started .text-wrapper {
  max-width: 675px;
  width: 100%;
  text-align: center;
}

.heal_get_started h2 {
  display: inline-block;
  position: relative;
}

.heal_get_started h2::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #757474;
  bottom: -10px;
  left: 0;
}

.heal_get_started h6 {
  margin-top: 40px;
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.heal_get_started .text {
  max-width: 505px;
  margin: auto;
  margin-top: 15px;
}

.heal_get_started .text p {
  line-height: 24px;
  text-align: center;
}

.heal_get_started form .f_flx {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.heal_get_started form label,
.heal_get_started form input {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.7px;
  width: 100%;
  text-align: left;
  padding: 0 17px;
}

.heal_get_started form input,
.heal_get_started form input::placeholder {
  color: #757474;
}

.heal_get_started form input {
  border-radius: 6px;
  border: 1px solid #000;
  background: #fff;
  outline: unset;
  height: 50px;
}

.heal_get_started form .f_flx {
  margin-top: 18px;
}

.heal_get_started form .f_flx:first-child {
  margin-top: 0;
}

.heal_get_started form {
  margin-top: 21px;
}

.heal_get_started form .start_btns {
  margin-top: 38px;
}

.heal_get_started .start_btns .btn {
  padding: 0;

  max-width: 194px;
  height: 38px;
  width: 100%;

  border-radius: 2px;
  border: 0.7px solid #000;
  background-color: var(--blueDC);
  transition: all 0.5s;
}

.heal_get_started .start_btns .btn input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 2px;
  border: none;
  outline: unset;

  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.heal_get_started .start_btns p {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 11px;
  margin-bottom: 9px;
}

.heal_get_started .start_btns .view_documentation {
  background-color: #444;
}

.heal_get_started .start_btns .view_documentation input {
  color: var(--white);
}

.heal_faq {
  margin-top: 66px;
  background-color: var(--light-grey);
  padding: 65px 30px;
}
.page-id-1288 .heal_faq {
  margin-top: 0;
}

.heal_faq .container-fluidss {
  max-width: 1081px;
  margin: auto;
}

.heal_faq .accordion .accordion-header .accordion-button {
  padding: 32px 58px;
  box-shadow: unset;
  background-color: unset;
  padding-right: 15px;

  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.heal_faq .accordion .accordion-body {
  padding: 10px 15px 25px 58px;
  max-width: 892px;
}

.heal_faq .accordion .accordion-body ol li,
.heal_faq .accordion .accordion-body p,
.heal_faq .accordion .accordion-body ul li {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.heal_faq .accordion .accordion-body ol li {
  line-height: 38px;
  list-style: decimal;
}

.heal_faq .accordion .accordion-body ul li {
  line-height: 38px;
  list-style: disc;
}

.heal_faq .accordion .accordion-header .accordion-button::after {
  background: url("../images/acc_plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}

.heal_faq .accordion .accordion-header .accordion-button:not(.collapsed)::after {
  background: url("../images/acc_sub.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}

.heal_faq .accordion .accordion-item {
  border: none;
  border-radius: 8px;
  margin-top: 14px;
}

.heal_faq .accordion .accordion-item:first-child {
  margin-top: 0;
  border-radius: 8px;
}

.heal_faq .accordion .accordion-body ul {
  padding-left: 30px;
  margin-top: 20px;
}

.heal_faq .accordion {
  margin-top: 25px;
}

.platform_banner .btns .get_start {
  max-width: 131px;
  width: 100%;
  height: 39px;

  border-radius: 2px;
  border: 0.7px solid #fff;
  background-color: var(--blueDC);
}

.platform_banner .btns .learn_more {
  display: inline-flex;
  width: auto;
  gap: 15px;
  color: var(--black);
}

.platform_banner .btns .learn_more img {
  transition: all 0.5s;
}

.platform_banner .btns .learn_more:hover img {
  transform: translateX(15px);
}

.platform_banner .btns {
  gap: 25px;
}

.platform_architechitecture {
  margin-top: 75px;
  background-color: var(--light-grey);
  padding: 30px 31px;
}

.platform_architechitecture h2 {
  text-transform: capitalize;
}

.platform_architechitecture .container-fluidss {
  max-width: 1503px;
  margin: auto;
}

.platform_architechitecture .p_flx {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.platform_architechitecture .p_img {
  max-width: 929px;
  width: 100%;
  /* overflow-x: scroll; */
}

.platform_architechitecture .p_img h2 {
  line-height: 44px;
}

.platform_architechitecture .p_img .img {
  width: 929px;
  height: 480px;
  margin-top: 25px;
}

.platform_architechitecture .p_img .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform_architechitecture .text-wrapper {
  max-width: 515px;
}

.platform_architechitecture .text-wrapper h2 {
  text-align: left;
  margin-left: 30px;
}

.platform_architechitecture .text-wrapper .text {
  margin-top: 30px;
}

.platform_architechitecture .text-wrapper p {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  list-style: auto;
  padding: 10px 40px;
  border-radius: 49px;
  transition: all 0.5s;
  margin-top: 5px;
}

.platform_architechitecture .text-wrapper p:hover {
  background-color: #c4c8ff;
}

.platform_architechitecture .text-wrapper p span {
  margin-left: -20px;
}

/* .plateform_console .tabs li.current {
  background-color: #C4C8FF;
} */

.plateform_console .tab-content {
  display: none;
}

.plateform_console .tab-content.current {
  display: inherit;
}

.plateform_console {
  margin-top: 68px;
  padding: 0 30px;
}

.plateform_console .container-fluidss {
  max-width: 1367px;
  margin: auto;
}

.plateform_console .custom_tabs {
  display: flex;
  align-items: start;
}

.plateform_console .tabs .tab-link {
  width: 100%;
  padding: 12px 28px;
  border-radius: 38.5px 0px 0px 38.5px;
  background-color: transparent;
  height: 77px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  transition: all 1s;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
}

.plateform_console .tabs .tab-link::after {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 0%;
  width: 0%;
  height: 100%;
  background-color: #c4c8ff;
  top: 0;
  left: 0;
  transition: all 1s;
  border-radius: 38.5px 0px 0px 38.5px;
  z-index: -1;
}

.plateform_console .tabs .tab-link:hover::after {
  max-width: 100%;
  width: 100%;
}

.plateform_console .tabs .tab-link:first-child {
  margin-top: 0;
}

.plateform_console .tabs {
  padding-top: 75px;
  max-width: 562px;
  width: 100%;
}

.plateform_console .tabs_detail {
  max-width: 805px;
  width: 100%;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
  padding: 35px 55px;
  padding-right: 30px;
}

.plateform_console .tabs_detail .con_img {
  height: auto;
}

.plateform_console .tabs_detail .con_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plateform_console .tabs_detail h2 {
  font-size: 42px;
  text-align: left;
}

.plateform_console .tabs_detail .text {
  margin-top: 20px;
}

.plateform_console .tabs_detail p,
.plateform_console .tabs_detail ul li {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.plateform_console .tabs_detail p strong {
  font-weight: 700;
}

.plateform_console .tabs_detail ul li {
  list-style: disc;
  margin-top: 25px;
}

.plateform_console .tabs_detail ul {
  margin-bottom: 20px;
  padding-left: 27px;
}

.plateform_console .text-wrapper {
  margin-left: 22px;
}

.plateform_console .tabs_btns h2 {
  text-align: left;
}

.plateform_console .tabs_btns {
  padding-top: 50px;
}

.platform_query {
  margin-top: 85px;
  padding: 0 30px;
}

.platform_query .container-fluidss {
  max-width: 1367px;
  margin: auto;
}

.platform_query .q_flx {
  display: flex;
  align-items: center;
  gap: 75px;
}

.platform_query .q_img {
  max-width: 700px;
  width: 100%;
  height: 400px;
}

.platform_query .q_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform_query .text-wrapper {
  width: 100%;
}

.platform_query h2 {
  text-align: left;
}

.platform_query .text {
  margin-top: 40px;
  padding-left: 10px;
}

.platform_query .text p {
  line-height: 37px;
}

.platform_query .available {
  margin-top: 36px;

  max-width: 277px;
  width: 100%;
  height: 39px;
  border-radius: 2px;
  border: 0.7px solid #000;
  background-color: var(--blueDC);

  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.platform_get_start .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.platform_get_start .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #000;
  bottom: 0;
  margin: auto;
}

.platform_get_start .checkbox-container input:checked ~ .checkmark {
  background-color: #a5dbe3;
}

.platform_get_start .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.platform_get_start .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.platform_get_start .checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.platform_get_start {
  margin-top: 35px;
  padding: 52px 30px;
  padding-bottom: 85px;
  background-color: var(--light-grey);
}

.platform_get_start .container-fluidss {
  max-width: 1130px;
  margin: auto;
}

.platform_get_start h2 {
  font-weight: 400;
}

.platform_get_start .documentation {
  max-width: 192px;
  width: 100%;
  margin: auto;
  margin-top: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;

  background-color: var(--dark-grey);
  color: var(--white);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  border-radius: 2px;
  border: 0.7px solid #fff;
  transition: all 0.5s;
}

.platform_get_start .or {
  margin-top: 12px;
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
}

.platform_get_start .top_text {
  margin-top: 0;
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
}

.platform_get_start form {
  margin-top: 45px;
}

.platform_get_start form .inp_flx {
  display: flex;
  gap: 32px;
}

.platform_get_start form .inp,
.platform_get_start form label,
.platform_get_start form input {
  width: 100%;
}

.platform_get_start form label,
.platform_get_start form input {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding: 0 18px;
}

.platform_get_start form input,
.platform_get_start form input::placeholder {
  color: #757474;
}

.platform_get_start form input {
  border-radius: 6px;
  border: 1px solid #000;
  background-color: #fff;
  height: 53px;
  outline: unset;
}

.platform_get_start form .inp_flx {
  margin-top: 15px;
}

.platform_get_start form .inp_flx:first-child {
  margin-top: 0;
}

.platform_get_start form .checkbox_flx {
  margin-top: 34px;
  display: flex;
  gap: 32px;
}

.platform_get_start form .checkbox_flx h6,
.platform_get_start form .checkbox_flx p,
.platform_get_start form .checkbox_flx label {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 33px;
}

.platform_get_start form .checkbox_flx p {
  color: #757474;
}

.platform_get_start .checkbox-container {
  position: relative;
  padding: 0;
  /* padding-left: 25px; */
  cursor: pointer;
}

.platform_get_start form .checkbox_flx .item {
  width: 100%;
}

.platform_get_start form .submit {
  max-width: 107px;
  height: 39px;
  width: 100%;
  border-radius: 2px;
  border: 0.7px solid #000;
  background-color: var(--blueDC) !important;
  padding: 0;
  transition: all 0.5s;
  margin: auto;
  margin-top: 55px;
  display: flex;
}

.platform_get_start form .submit input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;

  color: var(--black);
  -webkit-text-stroke-width: 0.2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background-color: #fff;
  opacity: 1;
  padding: 0;
}

.platform_get_start .wpcf7-list-item {
  margin: 0;
  width: 100%;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #a5dbe3;
}

.platform_get_start .wpcf7-list-item label {
  padding: 0;
}

.wpcf7-list-item input[type="checkbox"]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 49%;
  width: 5px;
  height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  display: none;
}

.wpcf7-list-item input[type="checkbox"]:checked::before {
  display: block;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

/* Default styles for the toggle button */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Active state for menu toggle */
.menu-toggle.active::before {
  content: "×";
  font-size: 32px;
  color: #fff;
}

header .header-btns.for_mobile {
  display: none;
}

.menu-toggle {
  display: none;
}

.home-banner h1 {
  margin-bottom: 20px;
}

.heal_banner:hover h2::before,
.platform_banner:hover h1::before {
  background-color: #84a4bb;
}

.platform_architechitecture .text-wrapper p strong,
.platform_banner .heal_banner .text p strong {
  font-weight: 700;
}

.platform_architechitecture .text-wrapper {
  margin-top: 40px;
}

.platform_get_start form .checkbox_flx label {
  font-family: "Comfortaa", sans-serif;
}

.wpcf7-spinner {
  margin: 0 25px;
}

.heal_banner h2::after,
.heal_banner h2::before {
  bottom: -26px;
}

.heal_acceleration .arrow_bold.right {
  transition: 0.5s;
}

.heal_acceleration .arrow_bold.right:first-child:hover {
  transform: translateX(15px);
}

.heal_acceleration .arrow_bold.right:hover {
  transform: translateX(-15px);
}

.heal_hardware_venders .i_img.remove-color {
  background-color: transparent;
}

.heal_hardware_venders .vender_flx .item {
  max-width: 266px;
  margin: auto;
  margin-top: auto;
  height: 100%;
}

.fhe_powerful_cate .item_4 h5 {
  text-transform: unset;
}

.about_lattica .about_detail h6::after,
.about_lattica .about_detail h6::before {
  bottom: -23px;
}

.about_lattica .our-approach .img img {
  object-position: 100% 46%;
}

.work_positions .w_posi h5::after,
.work_positions .w_posi h5::before {
  bottom: -18px;
}

.platform_banner .text {
  margin-top: 38px;
}

.platform_banner .btns .learn_more {
  outline: unset;
  border: unset;
}

.heal_hardware_venders .item_1 .i_img.remove-color {
  max-width: 51.993px;
  height: 52.001px;
}

.heal_hardware_venders .item_2 .i_img.remove-color {
  max-width: 59px;
  height: 52.13px;
}

.heal_hardware_venders .item_3 .i_img.remove-color {
  max-width: 56px;
  height: 53.792px;
}

.heal_hardware_venders .item_4 .i_img.remove-color {
  max-width: 62.018px;
  height: 54.1px;
}

.home-how-works .btns .learn-more {
  border: unset;
  outline: unset;
}

.heal_faq .accordion .accordion-item:last-child {
  border-radius: 0px 0px 8px 8px;
}

.kl-faq__entry--active .kl-faq__icon {
  transform: rotate(90deg);
}

.accordion-collapse {
  transition: all 0.3s ease-in-out;
}

.accordion-collapse.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.accordion-collapse.collapse.show {
  transition: all 0.3s ease-in-out;
}

/* NEW FORM CSS */
.heal_contact_us .bg-color {
  background: rgba(238, 238, 238, 0.31);
  padding: 106px 20px 85px 20px;
}

.heal_contact_us .container-fluidss {
  max-width: 702px;
  margin: auto;
}

.heal_contact_us .heading {
  margin-bottom: 45px;
}

.heal_contact_us h2 {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.heal_contact_us form label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding-left: 14px;
  text-transform: capitalize;
}

.heal_contact_us form input {
  width: 341px;
  height: 53px;
  border-radius: 6px;
  border: 1px solid #000;
  outline: none;
  background-color: #fff;
  color: #757474;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 228.571% */
  text-transform: capitalize;
  padding-left: 14px;
}

.heal_contact_us form .heal_input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.heal_contact_us form textarea {
  max-width: 702px;
  height: 124px;
  border-radius: 6px;
  border: 1px solid #000;
  background: #fff;
  width: 100%;
  padding-top: 11px;
  padding-left: 14px;
  color: #757474;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 32px;
  /* 228.571% */
}

.heal_contact_us .form-1 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.heal_contact_us form .ctm-btn {
  max-width: 105px;
  height: 39px;

  border-radius: 2px;
  border: 0.7px solid #000;
  background-color: #bbbddc;

  margin: auto;
  display: block;

  color: #000;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 47px;
}

.heal_contact_us {
  margin-top: 123px;
}

.heal_acceleration .item_5 .grid_img .img img.chip-2 {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.heal_acceleration .item_5 .grid_img .img:hover img.chip-2 {
  opacity: 1;
  visibility: visible;
}

/* .heal_acceleration .item_5 .grid_img .img:hover img.chip-1 {
  opacity: 0;
  visibility: hidden;
} */

.fhe_awareness_chart.tree_4 {
  margin-top: 166px;
}

.survey_chart h3::before {
  background-color: #757474 !important;
}

.tree_awareness rect {
  rx: 10px;
  ry: 10px;
}

.survey_banner .container-fluidss {
  max-width: 1346px !important;
}

.grow_concern g text {
  font-family: "Comfortaa", sans-serif;
}

.tree_awareness svg g text {
  font-family: "Comfortaa", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chart-text {
  font-family: "Comfortaa", sans-serif;
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.survey_chart .tree_awareness {
  margin-top: 34px;
}

.long_until_fhe {
  margin-top: 117px;
  max-width: 1240px;
}

/************************ Platform ************************/
/* .platform_architechitecture .img img {
  display: none;
}

.platform_architechitecture .img .default-tag {
  display: block;
}

.platform_architechitecture .text-wrapper .item-1:hover~.p_img .img .default-tag {
  display: none;
}

.platform_architechitecture .text-wrapper .item-1:hover~.p_img .img .red-tag {
  display: block;
}

.platform_architechitecture .text-wrapper .item-2:hover~.p_img .img img {
  display: none;
}

.platform_architechitecture .text-wrapper .item-2:hover~.p_img .img .blue-tag {
  display: block;
}

S .platform_architechitecture .text-wrapper .item-3:hover~.p_img .img img {
  display: none;
}

.platform_architechitecture .text-wrapper .item-3:hover~.p_img .img .green-tag {
  display: block;
}

.platform_architechitecture .text-wrapper .item-4:hover~.p_img .img img {
  display: none;
}

.platform_architechitecture .text-wrapper .item-4:hover~.p_img .img .lightblue-tag {
  display: block;
}

.platform_banner .heal_banner .heal_img img {
  object-position: center;
} */

/***********************************************
***********************************************/

.platform_architechitecture .p_img .img {
  position: relative;
}

.platform_architechitecture .img .item {
  width: 211.23px;
  height: 135.97px;
  background-color: #bbbddb;
  border-radius: 12px;
  position: relative;
  padding: 17px 10px;
}

.platform_architechitecture .img .item .logo {
  width: 21px;
  height: 16px;
  position: absolute;
  left: 12px;
  top: 10px;
}

.platform_architechitecture .img .item h5,
.platform_architechitecture .img .item p {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  max-width: 100px;
  margin: auto;
  margin-right: 0;
}

.platform_architechitecture .img .item p {
  line-height: normal;
  color: var(--black);
  margin-top: 10px;
}

.platform_architechitecture .img .item .tag {
  width: 53px;
  height: 55px;
  position: absolute;
  left: 22px;
  bottom: 17px;
}

.platform_architechitecture .item.query {
  margin: auto;
  margin-right: 0;
}

.platform_architechitecture .plate_arrow.query_arr {
  position: absolute;
  width: 201.85px;
  height: 91.41px;
  right: 94px;
}

.platform_architechitecture .plate_arrow.query_arr p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.platform_architechitecture .plate_arrow.query_arr .arr_1 {
  padding-right: 19px;
}

.platform_architechitecture .plate_arrow.query_arr .arr_2 {
  margin-top: -80px;
}

.platform_architechitecture .plate_arrow.query_arr p.p1 {
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
}

.platform_architechitecture .img .item.engine {
  margin-top: 7px;
  width: 100%;
}

.platform_architechitecture .img .item.engine h5 {
  max-width: 95px;
}

.platform_architechitecture .img .item.engine p {
  margin-top: 15px;
}

.platform_architechitecture .img .cloud_engine .cloud {
  width: 202.89px;
  height: 146.42px;
  margin-left: -89px;
}

.platform_architechitecture .img .cloud_engine {
  width: 211px;
  position: absolute;
  right: 307px;
  top: 40px;
  z-index: 1;
}

.platform_architechitecture .plate_arrow.deploy_arr {
  width: 240px;
  position: absolute;
  right: 465px;
  top: 250px;
}

.platform_architechitecture .plate_arrow.deploy_arr p {
  text-align: center;
}

.platform_architechitecture .plate_arrow.deploy_arr img.dep_2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.platform_architechitecture .plate_arrow.deploy_arr .p2 {
  margin-bottom: -22px;
  position: relative;
  z-index: 1;
}

.platform_architechitecture .plate_arrow.deploy_arr .p1:hover,
.platform_architechitecture .plate_arrow.deploy_arr .p2:hover,
.platform_architechitecture .plate_arrow.query_arr .p1:hover,
.platform_architechitecture .plate_arrow.query_arr .p2:hover {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
}

.platform_architechitecture .plate_arrow.deploy_arr img.dep_1,
.platform_architechitecture .plate_arrow.deploy_arr img.dep_2,
.platform_architechitecture .plate_arrow.deploy_arr p {
  width: 181px;
}

.platform_architechitecture .item.engine .tag {
  width: 61.157px;
  height: 61.134px;
  left: 15px;
}

.platform_architechitecture .item.console .tag {
  width: 74.03px;
  height: 53.226px;
}

.platform_architechitecture .item.console {
  position: absolute;
  top: 260px;
}

.platform_architechitecture .img img.plat_upload {
  width: 58.39px;
  height: 58.39px;
  position: absolute;
  left: 75px;
  bottom: 0;
}

.platform_architechitecture .p_img .item-1:hover ~ .img .item.console {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.platform_architechitecture .p_img .item-2:hover ~ .img .item.engine,
.platform_architechitecture .p_img .item-2:hover ~ .img .plate_arrow.deploy_arr .p2 {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.platform_architechitecture .p_img .item-3:hover ~ .img .item.query,
.platform_architechitecture .p_img .item-3:hover ~ .img .item.engine {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.platform_architechitecture .p_img .item-4:hover ~ .img .plate_arrow.query_arr {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.platform_architechitecture .item {
  transition: all 0.3s;
}

.platform_architechitecture .p_img .img .item:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.platform_architechitecture .text-wrapper p.hover-active,
.platform_architechitecture .plate_arrow.deploy_arr:hover ~ .img .item-4 {
  background-color: #c4c8ff !important;
}

.home-how-works ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 20px;
}

.plateform_console .tabs_detail {
  height: 844px;
}

.plateform_console .tabs_detail .con_img {
  min-height: 396px;
}

.platform_architechitecture h2.for-mobile {
  display: none;
}
.heal_faq .accordion .accordion-body p {
  margin-bottom: 15px;
}
.general-page h1,
.general-post-content h1 {
  max-width: 100% !important;
}
.page-template-template-heal .heal_get_started .g_img img {
  object-fit: cover;
}
@media (min-width: 1390px) {
  .home-our-encrypted .cards .item {
    max-width: 100%;
  }
  .home-our-encrypted .h_flx .text-item {
    width: 70%;
  }
  .home-our-encrypted .cards .item img {
    max-width: 195px;
  }
  .home-our-encrypted .cards .c_flx {
    gap: 60px;
  }
  .home-our-encrypted .h_flx {
    gap: 60px;
  }
}

.platform_architechitecture .p_img .img.for-mobile {
  display: none;
}

.heal_banner.haven h2::after,
.heal_banner.haven h2::before {
  display: none;
}

.heal_banner.haven h1::before {
  content: "";
  position: absolute;
  display: inline-block;
  /* max-width: 406px; */
  width: 51%;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: -15px;
  transition: all 1s;
}

.heal_banner.haven h1::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/banner-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 33px;
  left: 52%;
  bottom: -16px;
  transition: all 1s;
}

.heal_banner.haven h1 {
  position: relative;
}

.heal_banner.haven h1::after,
.heal_banner.haven h1::before {
  bottom: -26px;
}

.heal_banner.haven:hover h1::before {
  width: 82%;
}

.heal_banner.haven:hover h1::after {
  left: 83%;
}

.haven h2 {
  color: #000;
  font-size: 19.3px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
}

.heal_banner.haven .text {
/*  margin-top: 18px;*/
  margin-bottom: 54px;
}

.heal_banner.haven .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heal_banner.haven .text p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.heal_banner.haven .container-fluidss {
  max-width: 1530px;
  margin: 106px auto;
  margin-bottom: 81px;
}

.heal_banner.haven .heal_img {
  max-width: 677px;
  height: 397px;
}

.haven_encrypted h2 {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 62px;
}

.haven_encrypted .ctm_container {
  max-width: 1350px;
  margin: auto;
}

.haven_encrypted .flx {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.haven_encrypted .e_block h6 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  margin-bottom: 20px;
  margin-top: 45px;
}

.haven_encrypted .e_block p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.haven_encrypted .e_block {
  max-width: 278px;
}

.haven_encrypted {
  padding: 87px 20px 57px 20px;
}

.who_its_for h2 {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 50px;
}

.who_its_for .ctm_container {
  max-width: 1351px;
  margin: auto;
}

.who_its_for .flx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
  justify-content: space-between;
  align-items: center;
}

.who_its_for .flx .who_card h6 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px; /* 311.111% */
}

.who_its_for .flx .who_card p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  margin: 25px auto;
  max-width: 278px;
}

.who_its_for .flx .who_card {
  width: 100%;
  height: 323px;
  border-radius: 45px;
  background: #b8dbe6;

  /* Drop Shadow */
  box-shadow: -2px 2px 14px 0 rgba(0, 0, 0, 0.25);
  transition: all 1s;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.who_its_for .flx .who_card.green_card {
  background: #b8dbe6;
}

.who_its_for .flx .who_card.green_card:hover {
  background: #afccd5;
}

.who_its_for .flx .who_card.purple_card {
  background: #bbbddb;
}

.who_its_for .flx .who_card.purple_card:hover {
  background: #abadd1;
}

.who_its_for .flx .who_card.gray_card {
  background: #868b96;
}

.who_its_for .flx .who_card.gray_card:hover {
  background: #62656c;
}

.who_its_for .flx .who_card.black_card {
  background: #091734;
}

.who_its_for .flx .who_card.black_card:hover {
  background: #000;
}

.who_its_for .btns {
  display: flex;
  gap: 27px;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 40px;
}

.who_its_for .btns .btn {
  color: #fff;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 158px;
  height: 39px;
  width: 100%;
  border-radius: 2px;
  background: #3b3b3b;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.who_its_for .btns .partner {
  height: 39px;
  width: 100%;
  border-radius: 2px;
  background: #bbbddc;
  transition: all 0.5s;
}

.who_its_for {
  padding: 0 20px 75px 20px;
}

.what_haven {
  background-color: #eee;
  padding: 87px 20px 79px 20px;
}

.what_haven .ctm_container {
  max-width: 1350px;
  margin: auto;
}

.what_haven .heading {
  max-width: 899px;
  margin-bottom: 45px;
}

.what_haven .heading h2 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
  text-align: left;
}

.what_haven .heading p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.heal_get_started.heaven .g_img {
  box-shadow: none;
}
.heal_get_started.heaven .start_btns .btn input {
  text-align: center;
}
.heal_get_started .g_img img {
  object-position: center;
}
.heal_banner.haven h1 {
  font-size: 40px;
}
.heal_banner.haven .btns .partner {
  max-width: 131px;
  color: var(--black);
  border: 0.7px solid #000;
}
.heal_banner.haven .btns .documentation {
  max-width: 199px;
}
.heal_get_started.heaven {
  margin-top: 60px;
  margin-bottom: 60px;
}
.heal_faq .accordion .accordion-item {
  border-radius: 8px !important;
}
.heal_faq .accordion .accordion-header .accordion-button span {
  max-width: 726px;
  line-height: 30px;
}

.who_card {
  position: relative;
  overflow: hidden;
  background: #868b96; /* initial background */
  z-index: 1;
}

/* two bars: top + bottom */
.who_card::before,
.who_card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--hoverbg);
  transition: height 0.6s ease;
  z-index: 0;
  border-radius: 50px;
}

/* top bar */
.who_card::before {
  top: 50%;
  transform: translateY(-50%);
}

/* bottom bar */
.who_card::after {
  bottom: 50%;
  transform: translateY(50%);
}

/* Hover: bars expand to full box */
.who_card:hover::before,
.who_card:hover::after {
  height: 100%;
}

.who_card * {
  position: relative;
  z-index: 2; /* keep text above */
}

.client-box.client-box2 {
  margin-top: 104px;
}

.client-box.client-box3 {
  margin-top: 68px;
}

.box1-img3 {
  margin-top: 115px;
}

.box1-img2 {
  margin-top: 38px;
}
.box1-img6 {
  margin-top: 154px;
}

.box1-img4 {
  margin-top: 135px;
}

.multi-images {
  margin-top: 156px;
}

.diagram-box-sever .phe {
  margin-top: 163px;
}

.client-box.client-box2 {
  margin-top: 106px !important;
}

.client-box.client-box3 {
  margin-top: 67px !important;
}
