* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --subText: #5a5d61;
  --headline: #fff;
  --primary: #5bba01;
  --primaryLight: #5bba0125;
  --secondary: #0078c4;
  --gradient: linear-gradient(180deg, #0078c4, #5bba01);
  --main-transition: all 0.3s ease-in-out;
  --main-padding: 60px 0;
  --borderColor: #ebebec;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-fg);
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
[data-theme="light"] {
  --color-bg: #ffffff;
  --color-fg: #12161c;
  --nav-link: #5a5d61;
  --shadowColor: rgba(0, 0, 0, 0.1);
  --drop-hover: rgb(184, 184, 184);
  --highlight: #282063;
}
[data-theme="dark"] {
  --secondary: #22aaff;
  --highlight: #8170ff;
  --headline: var(--secondary);
  --subText: rgb(223, 223, 223);
  --nav-link: #8a8a8b;
  --color-bg: #000000;
  --color-fg: #ffffff;
  --shadowColor: rgba(255, 255, 255, 0.171);
  --borderColor: #ffffff;
  --drop-hover: rgb(61, 61, 61);
  .hero .layer {
    background: #000;
    opacity: 0.5;
  }
}
.primary-btn {
  display: inline-block;
  border: 0;
  padding: 8px 22px;
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--primary);
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.secondry-btn {
  display: inline-block;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
  color: var(--color-fg);
  background-color: var(--color-bg);
  border: 2px solid var(--color-fg);
  padding: 8px 22px;
}
.primary-btn:hover,
.secondry-btn:hover {
  scale: 1.1;
}
.main-p {
  padding: var(--main-padding);
}
.main-title h4 {
  position: relative;
  padding-left: 45px;
  font-size: 22px;
  font-weight: 400;
  color: var(--secondary);
}
.main-title h4::before {
  position: absolute;
  content: "";
  height: 3px;
  background-color: var(--secondary);
  width: 35px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-title p {
  font-size: 16px;
  font-weight: 500;
}
.secondry-title h4 {
  display: inline-block;
  font-size: 1.3rem;
  position: relative;
  padding: 0 40px;
  font-weight: 400;
  color: var(--secondary);
}
.secondry-title h4::before {
  position: absolute;
  content: "";
  height: 2px;
  background-color: var(--secondary);
  width: 30px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.secondry-title h4::after {
  position: absolute;
  content: "";
  height: 2px;
  background-color: var(--secondary);
  width: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes splash {
  0% {
    -webkit-clip-path: circle(130% at 0% 100%);
    clip-path: circle(130% at 0% 100%);
  }
  100% {
    -webkit-clip-path: circle(0 at 0 0);
    clip-path: circle(0 at 0 0);
  }
}
@keyframes splash {
  0% {
    -webkit-clip-path: circle(130% at 0% 100%);
    clip-path: circle(130% at 0% 100%);
  }
  100% {
    -webkit-clip-path: circle(0 at 0 0);
    clip-path: circle(0 at 0 0);
  }
}
@-webkit-keyframes outline {
  from {
    stroke-dashoffset: 130%;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes outline {
  from {
    stroke-dashoffset: 130%;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fill {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
    stroke: var(--primary);
  }
}
@keyframes fill {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
    stroke: var(--primary);
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loader {
  z-index: 9999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.loader .image {
  width: 150px;
  height: 150px;
}
.splash {
  background-color: var(--secondary);
  -webkit-animation: splash 2.2s 2s cubic-bezier(0.88, -0.01, 0.07, 1.01)
    forwards;
  animation: splash 2.2s 2s cubic-bezier(0.88, -0.01, 0.07, 1.01) forwards;
  z-index: 1000;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.splash .caption {
  -webkit-animation: fade-out 2.3s 1.9s forwards;
  animation: fade-out 2.3s 1.9s forwards;
  opacity: 0;
}
.text--line {
  font-size: 9rem;
  font-weight: 600;
}
#outline {
  fill: none;
  stroke: #fff;
  stroke-dasharray: 120%;
  stroke-dashoffset: 100%;
  -webkit-animation-name: outline;
  animation-name: outline;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#fill {
  fill-opacity: 0;
  fill: var(--primary);
  -webkit-animation-name: fill;
  animation-name: fill;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.navbar {
  background-color: var(--color-bg);
  -webkit-box-shadow: 0 0 4px 0 var(--shadowColor);
  box-shadow: 0 0 4px 0 var(--shadowColor);
}
.navbar-nav .dropdown-menu {
  border-color: var(--borderColor);
  background-color: var(--color-bg);
  padding: 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0;
}
.navbar-nav .dropdown-menu .dropdown-item a {
  padding: 13px 20px;
  display: block;
  width: 100%;
  color: var(--nav-link);
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
  position: relative;
}
.navbar-nav .dropdown-menu .dropdown-item a:hover {
  background-color: var(--drop-hover);
  color: var(--color-fg);
}
.navbar-nav .dropdown-menu .activate a {
  background-color: var(--drop-hover);
  color: var(--color-fg) !important;
}
.navbar-brand {
  width: 65px;
  height: 65px;
}
.navbar .navbar-nav .nav-link {
  color: var(--nav-link);
  position: relative;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
  padding: 10px 10px 10px 0;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--color-fg);
}
.navbar .navbar-nav .nav-link:after,
.navbar .active::after {
  content: "";
  width: 0;
  position: absolute;
  height: 1.5px;
  background-color: var(--color-fg);
  bottom: 0;
  left: 0;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.navbar .active::after {
  width: 90% !important;
}
.navbar .nav-link:hover::after {
  width: 90%;
}
.navbar .icons .nav-link {
  color: var(--color-fg);
}
.navbar .active {
  color: var(--color-fg) !important;
}
.navbar .offcanvas {
  background-color: var(--color-bg);
}
.fa-sun {
  color: #ff0;
}
.rotate-icon {
  -webkit-animation: rotate 1.2s ease-in-out;
  animation: rotate 1.2s ease-in-out;
}
.navbar .twitter:hover,
.navbar .linkedin:hover {
  color: var(--secondary);
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.landing .image {
  max-width: 75%;
}
.landing .image .image1 {
  -webkit-animation: rotate 8s linear infinite;
  animation: rotate 8s linear infinite;
}
.landing .image2 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}
.logo_items img {
  width: 130px !important;
  z-index: 1;
}
.logo_items .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo_items .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about .years {
  background: var(--primaryLight);
  padding: 30px;
  display: inline-block;
  position: relative;
  margin-left: 3rem;
  overflow: hidden;
}
.pillars:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Section-body.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.pillars .swiper {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}
.pillars .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 550px;
  padding: 20px;
  height: 380px;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
  border-radius: 14px;
  opacity: 0.8;
  scale: 0.8;
}
.pillars .layer {
  background: -o-linear-gradient(top, rgb(0 0 0 / 0.4), #131314);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(0 0 0 / 0.4)),
    to(#131314)
  );
  background: linear-gradient(180deg, rgb(0 0 0 / 0.4), #131314);
  border-radius: 14px;
}
.pillars .swiper-slide.swiper-slide-active {
  border-radius: 14px;
  scale: 1.2;
  opacity: 1;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.pillars .data {
  width: 85%;
}
.pillars .data svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}
.pillars .data p {
  font-size: 12px;
  font-weight: 300;
}
.pillars .data h4 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}
.pillars .swiper-button-prev,
.pillars .swiper-button-next {
  color: var(--primary);
  --swiper-navigation-size: 20px;
}
.pillars .swiper .swiper-button-next {
  right: 46%;
  bottom: 75px;
  top: unset;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pillars .swiper .swiper-button-prev {
  left: 46%;
  bottom: 75px;
  top: unset;
}
.info {
  background-image: url(../images/why-xyris.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.info h1 {
  font-size: 50px;
}
.info p {
  line-height: 1.8;
  font-size: 18px;
  font-weight: 300;
}
.advantage .container .text {
  height: 450px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.advantage .container .box {
  position: relative;
  margin: 0 10px;
}
.advantage .container .box h3 {
  margin-bottom: 20px;
}
.advantage .container .box p {
  line-height: 1.8;
}
.advantage .container .box {
  position: relative;
  -webkit-box-shadow: 0 0 10px 2px var(--shadowColor);
  box-shadow: 0 0 10px 2px var(--shadowColor);
  border-radius: 20px;
}
.advantage .container .row {
  margin-top: 30px;
}
.advantage .container i {
  color: var(--color-fg);
  margin-top: 30px;
}
.advantage .container .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.advantage .container svg {
  margin-bottom: -1px;
}
.advantage .container .row > div:nth-child(1) .text {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2ea7e5),
    to(#66ccff)
  );
  background: -o-linear-gradient(top, #2ea7e5, #66ccff);
  background: linear-gradient(to bottom, #2ea7e5, #66ccff);
}
.advantage .container .row > div:nth-child(2) .text {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#007ac5),
    to(#15a5ff)
  );
  background: -o-linear-gradient(top, #007ac5, #15a5ff);
  background: linear-gradient(to bottom, #007ac5, #15a5ff);
}
.advantage .container .row > div:nth-child(2) .box {
  scale: 1.1;
}
.audiance .container .row > div:nth-child(2) .box {
  scale: 1;
}
.advantage .container .row > div:nth-child(3) .text {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00487e),
    to(#1f8bdf)
  );
  background: -o-linear-gradient(top, #00487e, #1f8bdf);
  background: linear-gradient(to bottom, #00487e, #1f8bdf);
}
.join-us .images img {
  border-radius: 25px;
}
.join-us .images .image1 {
  background: var(--gradient);
  padding: 4px;
  width: 60%;
  border-radius: 25px;
}
.join-us .images .image2 {
  padding: 4px;
  width: 50%;
  bottom: -20%;
  right: 0;
  z-index: -1;
  border-radius: 25px;
  background: var(--gradient);
}
.contact .content img {
  height: 100%;
  width: 45%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}
.contact .content .form {
  width: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  padding: 2rem;
  border-radius: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--color-bg);
  -webkit-box-shadow: 0 0 2px 0 var(--shadowColor);
  box-shadow: 0 0 2px 0 var(--shadowColor);
  z-index: 1;
}
.contact .content .form ::-webkit-input-placeholder,
.contact-form-container .content .form ::-webkit-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::-moz-placeholder,
.contact-form-container .content .form ::-moz-placeholder {
  color: var(--subText);
}
.contact .content .form :-ms-input-placeholder,
.contact-form-container .content .form :-ms-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::-ms-input-placeholder,
.contact-form-container .content .form ::-ms-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::-webkit-input-placeholder,
.contact-form-container .content .form ::-webkit-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::-moz-placeholder,
.contact-form-container .content .form ::-moz-placeholder {
  color: var(--subText);
}
.contact .content .form :-ms-input-placeholder,
.contact-form-container .content .form :-ms-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::-ms-input-placeholder,
.contact-form-container .content .form ::-ms-input-placeholder {
  color: var(--subText);
}
.contact .content .form ::placeholder,
.contact-form-container .content .form ::placeholder {
  color: var(--subText);
}
.contact .form .inputBox input,
.contact .form .inputBox textarea,
.contact-form-container .form .inputBox input,
.contact-form-container .form .inputBox textarea {
  all: unset;
  border: 1px solid var(--borderColor);
  padding: 10px;
  border-radius: 6px;
  font-weight: 300;
  font-size: 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.contact .form .inputBox input:focus,
.contact .form .inputBox textarea:focus,
.contact-form-container .form .inputBox input:focus,
.contact-form-container .form .inputBox textarea:focus {
  border: 1px solid var(--primary);
}
.toast {
  color: white;
  position: fixed;
  bottom: 10px;
  left: 10px;
}
.footer .image {
  width: 80px;
  height: 80px;
}
.footer h4 {
  font-size: 22px;
  font-weight: 400;
}
.footer ul li {
  color: var(--subText);
  font-size: 15px;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.footer ul li i {
  color: var(--secondary);
}
.footer .social-icons a {
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.footer .social-icons a:hover {
  color: var(--secondary);
}
.footer ul li {
  color: var(--subText);
  font-size: 15px;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.footer ul li:hover {
  margin-left: 7px;
}
.footer .copy-right {
  text-align: center;
  background-color: var(--secondary);
  padding: 10px 0;
}
.hero {
  background-image: url(../images/hero\ about.webp);
  background-size: cover;
  height: 50vh;
}
.hero .layer {
  background: var(--secondary);
  opacity: 0.5;
}
.our-story .container {
  width: 65%;
}
.our-story .box {
  background-color: var(--color-bg);
  -webkit-transform: translateY(-2rem);
  -ms-transform: translateY(-2rem);
  transform: translateY(-2rem);
  border-radius: 10px;
  padding: 2rem;
  z-index: 2;
  -webkit-box-shadow: 0 0 0 1px var(--shadowColor);
  box-shadow: 0 0 0 1px var(--shadowColor);
}
.our-story p {
  font-size: 17px;
  line-height: 1.8;
}
.our-story .images {
  padding-bottom: 3rem;
  width: 90%;
  margin-left: auto;
}
.our-story .images .img1 {
  width: 60%;
  height: 95%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 45% 0 0;
}
.our-story .images .img2 {
  width: 50%;
  height: 65%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  border: 4px solid #fff;
  border-radius: 45% 0 0 0;
  bottom: 0;
  left: 0;
}
.our-story .years {
  width: 35%;
  aspect-ratio: 1 / 1;
  background: var(--secondary);
  opacity: 0.85;
  bottom: 0;
  right: 2rem;
  padding: 0 2rem;
}
.value-card {
  background-color: #0078c4;
  padding: 0 20px;
  height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.value-card .box h2 {
  margin: 20px 0;
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid #fff0;
  border-right: 80px solid #fff0;
  border-top: 60px solid var(--color-bg);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  z-index: 1;
}
.value-card1,
.value-card1::before {
  background-color: #2ea7e5;
}
.value-card2,
.value-card2::before {
  background-color: #007ac5;
}
.value-card3,
.value-card3::before {
  background-color: #00487e;
}
.principles:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Section-body.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.principles span {
  color: var(--highlight);
  font-weight: 600;
}
.principles .aboutCard .data h5 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.principles .aboutCard .data p {
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
}
.principles .aboutCard.vision .images,
.principles .aboutCard.mission .images,
.principles .aboutCard.journey .images {
  width: 90%;
}
.principles .aboutCard.vision .images .img1,
.principles .aboutCard.mission .images .img1 {
  width: 65%;
  border-radius: 25px;
  border: 5px solid var(--headline);
}
.principles .aboutCard.journey .images .img1 {
  border-radius: 25px;
  border: 4px solid var(--secondary);
  -webkit-box-shadow: 0 3px 3px 3px #5bba01;
  box-shadow: 0 3px 3px 3px #5bba01;
}
.principles .aboutCard.vision .images .img2 {
  border-radius: 25px;
  border: 5px solid var(--headline);
  width: 45%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.principles .aboutCard.vision .images svg,
.principles .aboutCard.mission .images svg {
  position: absolute;
  top: 0;
  right: 0;
  scale: 0.8;
}
.principles .aboutCard.mission .images .img2 {
  border-radius: 25px;
  border: 5px solid var(--headline);
  width: 55%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 2rem;
}
.value .image {
  width: 70px;
  height: 70px;
}
.value h5 {
  font-weight: 600;
}
.service-pillars .container {
  width: 60%;
}
.service-pillars .container .pillar-card {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  border-radius: 20px;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.service-pillars .container .pillar-card:hover {
  scale: 105%;
}
.service-pillars .container .pillar-card .layer {
  background: #000;
  opacity: 0.5;
  border-radius: 20px;
}
.service-pillars .container .pillar-card1,
.service-pillars .container .pillar-card2,
.service-pillars .container .pillar-card3 {
  background-position: center;
  background-size: cover;
}
.service-pillars .container .pillar-card1 {
  background-image: url(../images/pillar-background1.webp);
}
.service-pillars .container .pillar-card2 {
  background-image: url(../images/pillar-background2.webp);
}
.service-pillars .container .pillar-card3 {
  background-image: url(../images/pillar-background3.webp);
}
.service-pillars .container .pillar-card .num {
  font-size: 20px;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.achive .images {
  width: 90%;
  position: relative;
  padding-bottom: 3rem;
}
.achive .images:after {
  content: "";
  right: 0;
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  height: 60%;
  aspect-ratio: 1 / 1;
  background: var(--primary);
  opacity: 0.5;
}
.achive .images .img1 {
  width: 85%;
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  margin-left: 1rem;
}
.achive .images .img2 {
  position: absolute;
  width: 60%;
  border-radius: 30px;
  border: 5px solid var(--color-bg);
  bottom: 0;
  right: 20px;
}
.achive .images .trophy {
  position: absolute;
  left: 0;
  background-color: #000;
  bottom: 2.5rem;
  color: var(--headline);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.2rem;
}
.achive p {
  line-height: 1.8;
}
.case-study .box {
  width: 50%;
}
.case-study .case-card .figure {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  -webkit-filter: drop-shadow(0 4px 6px rgb(28 59 84 / 0.1))
    drop-shadow(0 2px 4px rgb(28 59 84 / 0.06))
    drop-shadow(0 0 0 rgb(28 59 84 / 0.05));
  filter: drop-shadow(0 4px 6px rgb(28 59 84 / 0.1))
    drop-shadow(0 2px 4px rgb(28 59 84 / 0.06))
    drop-shadow(0 0 0 rgb(28 59 84 / 0.05));
  position: relative;
}
.case-study .case-card .figure1 {
  background-color: #eff8e6;
}
.case-study .case-card .figure2 {
  background: -o-linear-gradient(left, #eff8e6, #e6f2f9);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#eff8e6),
    to(#e6f2f9)
  );
  background: linear-gradient(90deg, #eff8e6, #e6f2f9);
}
.case-study .case-card .figure3 {
  background-color: #e6f2f9;
}
.case-study .case-card .figure:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.5;
  z-index: -1;
}
.case-study .case-card p {
  font-size: 14px;
  line-height: 1.7;
}
.case-study .case-card span {
  position: absolute;
  font-size: 10rem;
  opacity: 0.05;
  font-weight: 600;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.our-strategies p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--subText);
}
.our-strategies .row {
  margin-bottom: 20px;
}
.our-strategies .icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 22px;
}
.process .shape {
  position: relative;
  -webkit-clip-path: polygon(
    100% 25%,
    100% 100%,
    50% 85%,
    0 100%,
    0 25%,
    50% 0
  );
  clip-path: polygon(100% 25%, 100% 100%, 50% 85%, 0 100%, 0 25%, 50% 0);
  height: 500px;
  padding: 0 30px;
}
.process .shape p {
  line-height: 1.8;
  font-weight: 400;
}
.process span {
  position: absolute;
  background-color: #fff;
  -webkit-clip-path: polygon(
    75% 0%,
    100% 50%,
    75% 100%,
    0% 100%,
    25% 50%,
    0% 0%
  );
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  width: 70px;
  top: 50%;
  height: 55px;
  right: -31px;
  z-index: 1;
}
.process .shape1 {
  background-color: #2ea7e5;
}
.process .shape2 {
  background-color: #007ac5;
}
.process .shape3 {
  background-color: #00487e;
}
.process .shape4 {
  background-color: #180f5c;
}
.clients p {
  font-weight: 300;
  line-height: 1.8;
}
.clients .images .img1 {
  width: 60%;
  border-radius: 150px;
}
.clients .images {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.clients .images .img2 {
  width: 50%;
  position: absolute;
  border-radius: 150px;
  bottom: 3rem;
  left: 0;
  border: 6px solid #fff;
}
.steps .row .col-md-3:last-child .steps-card:after {
  display: none;
}
.steps .row .col-md-3:nth-child(2) .steps-card:after {
  bottom: 40%;
  top: unset;
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.steps .steps-card {
  text-align: center;
  margin-top: 3rem;
  position: relative;
}
.steps .steps-card:after {
  content: "";
  position: absolute;
  top: -8%;
  right: -45%;
  width: 77%;
  height: 23px;
  background-image: url(../images/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.steps .steps-card .icon {
  background: var(--gradient);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}
.steps .steps-card .icon i {
  color: #fff;
  font-size: 30px;
}
.steps .steps-card h6 {
  margin-top: 3rem;
  font-weight: 400;
}
.serv-items:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Section-body.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.serv-items .servCard .data h5 {
  font-size: 1.7rem;
  font-weight: 400;
}
.serv-items .servCard .data p {
  font-weight: 300;
  font-size: 17px;
  line-height: 35px;
}
.serv-items .servCard .images {
  width: 90%;
}
.serv-items .servCard .images .img1 {
  width: 80%;
  height: 600px;
  border-radius: 25px;
  border: 5px solid var(--headline);
  -o-object-fit: cover;
  object-fit: cover;
}
.serv-items .servCard .images .img2 {
  border-radius: 25px;
  border: 5px solid var(--headline);
  width: 50%;
  height: 333px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.serv-items .servCard .images svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  z-index: -1;
}
.serv-details {
  background-image: url(../images/CycleManagement.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.serv-details .layer {
  background: #000;
  opacity: 0.5;
}
.floating-contact-us {
  position: fixed;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary);
  color: #fff;
  padding: 15px;
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  z-index: 999;
}
.floating-contact-us:hover {
  background-color: var(--primary);
}
.contact-form-container {
  z-index: 999;
  position: fixed;
  bottom: 80px;
  overflow: auto;
  right: 20px;
  width: 900px;
  max-width: 90%;
  max-height: 650px;
  background-color: var(--color-bg);
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  border-radius: 10px;
  padding: 20px;
  display: none;
  -webkit-animation: bobup 0.5s ease-out;
  animation: bobup 0.5s ease-out;
}
@-webkit-keyframes bobup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bobup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.partners {
  padding-bottom: 120px;
}
.partners .image img {
  width: 70%;
  -webkit-transition: var(--main-transition);
  -o-transition: var(--main-transition);
  transition: var(--main-transition);
}
.partners .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.partners .image:hover img {
  scale: 1.1;
}
.partners .row > .col-md-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 15px;
}

/*************************************************** satrt dashboard *****************************************/
