@import url("https://use.typekit.net/nkq8fly.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");
@font-face {
  font-family: "tungstenw05-medium";
  src: url("/content/dam/infosys-web/en/fonts/tungstenw05-medium.woff2")
      format("woff2"),
    url("/content/dam/infosys-web/en/fonts/tungstenw05-medium.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Transition */
input[type="checkbox"] {
  height: 0;
  width: 0;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input[type="checkbox"]:focus + label span {
  outline: 2px solid #000;
}

input[type="checkbox"] + label {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  display: flex;
  margin: 12px 0;
  align-items: start;
  color: #333640;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"] + label > ins {
  position: absolute;
  display: block;
  bottom: 0;
  left: 3.4rem;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"] + label > ins > i {
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #2c3d8e;
}

input[type="checkbox"] + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

input[type="checkbox"] + label:hover,
input[type="checkbox"]:focus + label {
  color: #333640;
}

input[type="checkbox"] + label:hover > span,
input[type="checkbox"]:focus + label > span {
  background: #fff;
}

input[type="checkbox"]:checked + label > ins {
  height: 100%;
}

input[type="checkbox"]:checked + label > span {
  border: 12px solid #3f3f3f;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"]:checked + label > span:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 100ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  font-size: 24px;
}

@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #fff;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
p {
  margin-bottom: 2rem;
}

.custom_btn {
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #273e93;
  transition: all 0.3s ease-in-out;
  padding: 2.5rem 3.5rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: left;
  box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
}

.custom_btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  z-index: -1;
}

.custom_btn:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: #ffffff;
}

.custom_btn:hover:before {
  width: 100%;
}

.skip-link {
  border-radius: 0 0 5px 5px;
  position: absolute;
  top: -40px;
  left: 0;
  background: #000000;
  color: white;
  padding: 8px 15px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

a:focus,
button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus,
.foot-logo:focus,
[tabindex]:focus {
  outline: 2px solid #007cc3;
  outline-offset: 2px;
}
.accordion-header {
  padding: 0 4px;
}
.accordion-button:focus {
  outline: 2px solid #007cc3;
  border-color: #007cc3;
  box-shadow: none;
  z-index: 2;
  position: relative;
}
@keyframes moveRightLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.slider-row-ltr,
.slider-row-rtl {
  animation: none;
}

@media (min-width: 768px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 400;
  }
  .custom_btn {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .slider-row-ltr {
    animation: moveLeftRight 5s ease-in-out infinite;
  }
  .slider-row-rtl {
    animation: moveRightLeft 5s ease-in-out infinite;
  }
}
@media (min-width: 1200px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .custom_btn {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.btn {
  background-color: transparent;
  border: 0;
  border-radius: 26px;
  padding: 1.4rem 2.8rem 1.4rem 2.8rem;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
  border-color: #000000;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn:focus {
  box-shadow: none;
}

.btn:hover,
.btn:active,
.btn:focus {
  color: #3f3f3f;
  border-color: #000000;
  background-color: #ffffff;
}

.btn:hover:before,
.btn:active:before,
.btn:focus:before {
  width: 100%;
}

.btn.btn-primary {
  background-color: #000000;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #ffffff;
  border: 1px solid #000000 !important;
  color: #963596 !important;
}

.btn-connect {
  background-color: #ffffff;
  border: 0 !important;
  border-radius: 26px !important;
  padding: 1rem 2rem !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #963596 !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-connect:hover,
.btn-connect:focus,
.btn-connect:active {
  background-color: #382261 !important;
  color: #ffffff !important;
}

.btn-roles {
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 26px !important;
  padding: 0.8rem 2.8rem !important;
  font-size: 1.8rem !important;
  line-height: 1.8rem;
  color: #372461 !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-roles:hover,
.btn-roles:focus,
.btn-roles:active {
  background-color: #963596 !important;
  color: #ffffff !important;
}

.btn-slider {
  background-color: #963596;
  border: 0 !important;
  padding: 1.4rem 2.8rem !important;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #ffffff !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-slider:hover,
.btn-slider:active {
  background-color: #ffffff !important;
  color: #963596 !important;
}
.btn-slider:hover,
.btn-slider:focus,
.btn-slider:active {
  background-color: #382261 !important;
  color: #ffffff !important;
}

.btn-custom {
  background-color: #963596;
  border: 0 !important;
  padding: 1rem 2rem !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #ffffff !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  background-color: #382261 !important;
  color: #ffffff !important;
}

.rounded {
  border-radius: 2.6rem !important;
  border: none;
  line-height: 1.6rem;
  padding: 1.4rem 2.8rem !important;
  text-transform: none;
  font-weight: 400;
  font-size: 2rem;
  width: auto;
}
.rounded .default-dn-ico {
  margin-right: 7px;
  width: 15px;
  height: 17px;
  position: relative;
  top: 3px;
}
.rounded:hover {
  background-color: #3f3f3f;
  color: white;
  border-color: #3f3f3f;
}
.rounded:hover .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-icompaz/en/images/icon-download-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  transition: all 0.5s ease-in-out;
}
.rounded .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-icompaz/en/images/icon-download-normal.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  transition: all 0.5s ease-in-out;
}
.rounded:focus,
.rounded .focus {
  outline: 5px auto #000;
  outline-offset: -2px;
}
.swiper-notification {
  display: none !important;
}
@media (min-width: 768px) {
  .btn-connect,
  .btn-custom {
    padding: 1.4rem 2.8rem !important;
    font-size: 1.8rem;
  }
}
footer {
  background: #372461;
  color: #ffffff;
}
footer .foot-logo img {
  /* max-width: 15.5rem; */
  max-width: 100%;
  padding-right: 10px;
}
footer .link-section {
  padding: 5rem 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
footer .link-section .ftr-head {
  margin: 3rem 0 0;
}
footer .txt-copyirght {
  color: #2d2828;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0;
  padding: 1.6rem 0;
}
footer .office-address {
  margin-top: 1rem;
}
footer ul {
  margin-bottom: 0;
}
footer ul.footer-txt > li:first-child {
  margin-top: 1.5rem;
}
footer ul.footer-txt > li {
  margin-bottom: 1.2rem;
}
footer ul.footer-txt > li > a {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1rem;
  text-decoration: underline;
}
footer .list-social {
  padding-left: 0;
  margin: 1rem 0 2rem;
  list-style: none;
}
footer .list-social > li {
  display: inline-block;
  margin-right: 2.4rem;
}
footer .ftr-head {
  font-weight: 700;
  font-size: 2.2rem;
  margin: 0;
}

.foot-head-section {
  background: #963596;
  padding: 10rem 0;
  margin: auto;
}
.foot-head-section .ftr-head-title {
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 3rem;
  padding: 0;
}

@media (min-width: 768px) {
  footer .link-section .ftr-head {
    margin: 3rem 0 0;
  }
  .office-address {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  footer {
    background: #372461;
    color: #ffffff;
  }
  footer .foot-head-section .ftr-head-title {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 3rem;
    padding: 0;
  }
  footer .link-section {
    padding: 10rem 0;
    margin-right: auto;
    margin-left: auto;
  }
  footer .link-section .ftr-head {
    margin: 0;
  }
  footer .txt-copyirght {
    color: #2d2828;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 0;
    padding: 1.6rem 0;
  }
  footer ul {
    margin-bottom: 1rem;
  }
  footer ul.footer-txt > li:first-child,
  footer ul.footer-txt .office-address {
    margin-top: 2rem;
  }
  footer ul.footer-txt > li {
    margin-bottom: 1rem;
  }
  footer ul.footer-txt > li > a {
    color: #ffffff;
    font-size: 1.6rem;
  }
  footer .list-social {
    padding-left: 0;
    margin: 2.4rem 0 0;
    list-style: none;
  }
  footer .list-social > li {
    display: inline-block;
    margin-right: 2.4rem;
  }
  footer .ftr-head {
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0;
  }
}
.slideInDown {
  animation: slideInDown 0.4s both;
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0%);
  }
}
.slideInUp {
  animation: slideInUp 0.6s both;
}

@keyframes slideInUp {
  0% {
    transform: translateY(15%);
    visibility: visible;
  }
  100% {
    transform: translateY(0%);
  }
}
.hidden {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  min-height: 68px;
  display: flex;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.header .sticky-logo {
  display: none;
}
.header .navbar-brand img {
  margin: 0;
  width: 100px;
  height: auto;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header.is-sticky,
.header:hover {
  transform: translateY(0);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff;
}
.header.is-sticky .navbar-brand img.default-logo,
.header:hover .navbar-brand img.default-logo {
  display: none;
}
.header.is-sticky .navbar-brand img.sticky-logo,
.header:hover .navbar-brand img.sticky-logo {
  display: inline-flex;
}
.header.is-sticky .header-right .main-menu li.menu-item > a:hover,
.header.is-sticky .header-right .main-menu li.menu-item > a.selected,
.header:hover .header-right .main-menu li.menu-item > a:hover,
.header:hover .header-right .main-menu li.menu-item > a.selected {
  border-bottom: 2px solid #963596 !important;
}
.header.is-sticky .btn-connect,
.header:hover .btn-connect {
  background-color: #963596;
  color: #ffffff !important;
}
.header .header-row {
  display: flex;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 100;
}
.header .header-row .header-right {
  display: flex;
  align-items: center;
}
.header .header-row .header-right .main-menu {
  display: none;
}
.header .header-row .mobile-menu {
  position: absolute;
  background-color: #ffffff;
  top: 68px;
  left: 0;
  height: calc(100vh - 68px); /* Adjust height to fill remaining viewport */
  width: 100%;
  overflow-y: auto; /* Changed to auto for better behavior - scrollbar only when needed */
  padding: 15px 20px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  -webkit-overflow-scrolling: touch;
}
.header .header-row .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-row .mobile-menu ul li {
  margin-bottom: 0px;
}
.header .header-row .mobile-menu ul li:hover {
  background-color: rgba(222, 225, 226, 0.466);
}
.header .header-row .mobile-menu ul li.mega-menu {
  position: relative;
  /* Hide the sub-menu by default */
}
.header .header-row .mobile-menu ul li.mega-menu .sub-menu.hidden {
  display: none;
}
.header .header-row .mobile-menu ul li.mega-menu .sub-menu.active {
  display: block;
}
.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper {
  display: none;
  padding: 16px 16px 0;
}
.header
  .header-row
  .mobile-menu
  ul
  li.mega-menu
  .mega-menu-wrapper
  .mega-menu-col {
  margin-bottom: 20px;
}
.header
  .header-row
  .mobile-menu
  ul
  li.mega-menu
  .mega-menu-wrapper
  .mega-menu-col
  .link-solution {
  color: #9d999a;
  font-size: 1.8rem;
  padding-left: 15px;
}
.header
  .header-row
  .mobile-menu
  ul
  li.mega-menu
  .mega-menu-wrapper
  .mega-menu-col
  .link-solution:hover {
  background: none;
  color: inherit;
}
.header
  .header-row
  .mobile-menu
  ul
  li.mega-menu
  .mega-menu-wrapper
  .mega-menu-col
  .link-solution:hover:after {
  background: none;
}
.header
  .header-row
  .mobile-menu
  ul
  li.mega-menu
  .mega-menu-wrapper
  .mega-menu-col
  ul
  li
  a {
  font-weight: 400;
  padding-left: 15px;
}
.header .header-row .mobile-menu ul li.dropdown {
  position: relative;
}
.header .header-row .mobile-menu ul li a {
  display: block;
  color: #000000;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 9px;
  transition: all 0.3s ease;
  position: relative;
}
.header .header-row .mobile-menu ul li a .our-sol-desc {
  font-size: 1.6rem;
  font-weight: 400 !important;
  color: #9d999a;
}
.header .header-row .mobile-menu ul li a::after {
  background: url("/content/dam/infosys-icompaz/en/images/icon-redirect.svg")
    no-repeat center;
  /* Path to your arrow icon */
  content: "";
  /* Path to your arrow icon */
  display: inline-block;
  height: 12px;
  margin-left: 8px;
  /* Add spacing between text and icon */
  position: absolute;
  top: 50%;
  /* Vertically center the icon */
  right: 20px;
  /* Position the icon to the right */
  transform: translateX(-10px) translateY(-50%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  width: 20px;
}
.header .header-row .mobile-menu ul li a:hover {
  background-color: #f6f8fd;
}
.header .header-row .mobile-menu ul li a:hover::after {
  opacity: 1;
  transform: translateX(5px) translateY(-50%);
  /* Move the arrow icon slightly to the right on hover */
}
.header .mobile-toggler {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  color: #ffffff;
  cursor: pointer;
  padding: 7px 13px;
  text-align: center;
  font-size: 13px;
  vertical-align: middle;
  margin: 8px 0 8px 1em;
  line-height: 20px;
}
.header.is-sticky .mobile-toggler {
  background-color: #963596;
  color: #ffffff;
}
.header.is-sticky .burger .icon-bar,
.header.is-sticky .burger::before,
.header.is-sticky .burger::after {
  background-color: #fff;
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .item {
  background-color: #000;
  /* Match your background color */
}

#slider.owl-theme {
  padding: 0;
}

#slider.owl-carousel,
#slider.owl-carousel .owl-stage-outer {
  overflow: hidden !important;
}

#slider.owl-carousel .owl-item {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.home-oss-scontrol {
  margin: 2rem 0 0;
}

.btn-connect {
  margin-left: 1.5rem;
  white-space: nowrap;
}

.burger {
  cursor: pointer;
  position: relative;
  z-index: 9;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.burger .icon-bar,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 14px;
  background-color: #061838;
  transition: all 0.4s ease;
}
.burger .icon-bar {
  right: 10px;
  top: 17px;
  transform: translateY(0);
  width: 8px;
}
.burger::before {
  top: 10px;
}
.burger::after {
  top: 24px;
}
.burger.open {
  background-color: #ffffff;
  transform: rotate(0deg);
}
.burger.open .icon-bar {
  opacity: 0;
}
.burger.open::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

#slider {
  position: relative;
}
#slider .item {
  width: 100vw !important;
  height: 48rem;
  min-height: 48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#slider .item.active .owl-item-media video {
  opacity: 1;
}
#slider .item .owl-item-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 480px;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}
#slider .item .owl-item-media video {
  width: 100vw;
  min-height: 100vh;
  height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#slider .item .owl-item-media video.video-visible {
  opacity: 1;
}
#slider .item .owl-item-content {
  position: absolute;
  bottom: 3vh;
  z-index: 2;
  color: #ffffff;
  left: 0;
  padding: 2rem 1.5rem 0;
  right: 0;
}
#slider .item .owl-item-content .slider-title {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 4rem;
  line-height: 4.2rem;
}
#slider .item .owl-item-content .slider-desc {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin: 1.5rem 0 2rem;
}
#slider .item .btn-slider {
  margin-bottom: 3rem;
}
#slider .owl-dots {
  bottom: 2vh;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
#slider .owl-dots .owl-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s;
}
#slider .owl-dots .owl-dot.active {
  background: #ffffff;
}

@media (min-width: 768px) {
  .header .navbar-brand img {
    width: 150px;
  }
  .header.is-sticky .navbar-brand img {
    /*height: 90%;*/
  }
  .navbar-brand {
    display: inline-block;
    /*height: 80px;*/
  }
  header .navbar {
    padding: 24px 0 20px;
  }
  #slider .item {
    height: 60rem;
    min-height: 100vh;
  }
  #slider .item .owl-item-content {
    bottom: 5vh;
    padding: 2rem 0 0;
  }
  #slider .item .owl-item-content .slider-title {
    font-size: 6rem;
    line-height: 6rem;
  }
  #slider .item .owl-item-content .slider-desc {
    font-size: 2rem;
    line-height: 2.8rem;
    margin: 2rem 0;
    padding: 10px 0 0;
  }
  #slider .item .btn-slider {
    margin-bottom: 5rem !important;
  }
  #slider .item .owl-item-media {
    height: 60rem;
    min-height: 100vh;
  }
  #slider .item .owl-item-media video {
    width: 100vw;
    height: 60rem;
    min-height: 100vh;
  }
}
@media (min-width: 992px) {
  .header .navbar-brand img {
    /* height: 90%; */
  }
  .header.is-sticky .header-row .header-right .main-menu li.menu-item > a,
  .header:hover .header-row .header-right .main-menu li.menu-item > a {
    color: #000000;
  }
  .header .header-row {
    flex-flow: row nowrap;
  }
  .header .header-row .header-right .main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    /* Mega menu styles */
  }
  .header .header-row .header-right .main-menu li.menu-item {
    display: block;
    /* Dropdown menu styles */
  }
  .header .header-row .header-right .main-menu li.menu-item:not(:last-child) {
    margin: 0 20px 0 0;
  }
  .header .header-row .header-right .main-menu li.menu-item > a {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 20px;
    color: #ffffff;
    padding: 9px 0;
    margin: 26px 14px;
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
  }
  .header .header-row .header-right .main-menu li.menu-item > a:hover,
  .header .header-row .header-right .main-menu li.menu-item > a.selected {
    border-bottom: 2px solid #ffffff;
  }
  .header .header-row .header-right .main-menu li.menu-item > a.active {
    color: #e9900a;
  }
  .header .header-row .header-right .main-menu li.menu-item.dropdown {
    position: relative;
  }
  .header
    .header-row
    .header-right
    .main-menu
    li.menu-item.dropdown
    ul.sub-menu {
    background-color: #963596;
    min-width: 200px;
    padding: 0;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
    text-transform: none;
  }
  .header .header-row .header-right .main-menu .mega-menu .mega-menu-wrapper {
    position: absolute;
    left: 0%;
    margin-top: -15px;
    padding: 4rem 2.5rem;
    background-color: #ffffff;
    width: 100%;
    min-width: 100%;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    will-change: opacity;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    .link-solution {
    color: #9d999a;
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 15px;
    padding-left: 15px;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul {
    list-style: none;
    margin-left: 0;
    margin-right: 20px;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul
    li
    a {
    text-decoration: none;
    padding: 16px;
    display: block;
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
    color: #000000;
    position: relative;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul
    li
    a
    .our-sol-desc {
    font-size: 1.6rem;
    font-weight: 400 !important;
    color: #3f3f3f;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul
    li
    a::after {
    background: url("/content/dam/infosys-icompaz/en/images/icon-redirect.svg")
      no-repeat center;
    /* Path to your arrow icon */
    content: "";
    /* Path to your arrow icon */
    display: inline-block;
    height: 12px;
    margin-left: 8px;
    /* Add spacing between text and icon */
    position: absolute;
    top: 20px;
    /* Vertically center the icon */
    right: 16px;
    /* Position the icon to the right */
    transform: translateX(-20px) translateY(-50%);
    /* Adjust for vertical centering */
    transition: transform 0.6s ease, opacity 0.6s ease;
    width: 20px;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul
    li
    a:hover {
    background-color: #f6f8fd;
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu
    .mega-menu-wrapper
    .mega-menu-col
    ul
    li
    a:hover::after {
    opacity: 1;
    transform: translateX(5px) translateY(-50%);
    /* Move the arrow icon slightly to the right on hover */
  }
  .header
    .header-row
    .header-right
    .main-menu
    .mega-menu.submenu-open
    .mega-menu-wrapper {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    opacity: 1 !important;
    visibility: visible !important;
    transition-delay: 0s;
  }
  .header .header-row .mobile-toggler {
    display: none;
  }
  #slider .item .owl-item-content .slider-title {
    font-size: 7.4rem !important;
    line-height: 7rem !important;
  }
}
@media (min-width: 1600px) {
  #slider .owl-dots {
    position: absolute;
    bottom: 2vh;
  }
  #slider .item .owl-item-content .slider-title {
    font-size: 12.5rem !important;
    line-height: 12rem !important;
  }
}
:root {
  --transition-speed: 0.3s;
}

.banner-section {
  background: url("/content/dam/infosys-icompaz/en/images/bg-about.jpg")
    no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  height: 80vh;
  min-height: 550px;
  position: relative;
  width: 100%;
}
.banner-section.careers-banner {
  background: url("/content/dam/infosys-icompaz/en/images/bg-career1.jpg")
    no-repeat;
  background-size: cover;
  background-position: right;
}
.banner-section.partners-banner {
  background: url("/content/dam/infosys-icompaz/en/images/bg-partners.jpg")
    no-repeat;
  background-size: cover;
  background-position: right;
}
.banner-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .hero-title-desc {
  font-size: 1.8rem;
}
.banner-section .hero-content {
  position: absolute;
  bottom: 0;
  padding-bottom: 3rem;
  max-width: 100%;
}
.banner-section .banner-title {
  color: #ffffff;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 4rem;
  line-height: 4.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.banner-section .hero-description {
  font-size: 1.8rem;
  line-height: 2.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.who-we-are {
  padding: 3rem 0;
}
.who-we-are .swiper-controls {
  display: flex;
  margin-bottom: 3rem;
  width: 160px;
}
.who-we-are p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.wwa-slider {
  padding: 3rem 0 0;
}

.wwa-counter {
  display: block;
}

.wwa-card {
  position: relative;
}
.wwa-card:hover .wwa-card-content,
.wwa-card:focus .wwa-card-content {
  transform: translateY(-10px);
}
.wwa-card:hover .card-title,
.wwa-card:hover .card-desc,
.wwa-card:focus .card-title,
.wwa-card:focus .card-desc {
  opacity: 1;
  transform: translateY(0);
}
.wwa-card.first-card:hover .wwa-card-content,
.wwa-card.first-card:focus .wwa-card-content {
  transform: translateY(0);
}

.wwa-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem 3rem 15px;
  z-index: 3;
  transition: transform var(--transition-speed) ease;
}
.wwa-card-content .card-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 3.6rem;
  padding-right: 40px;
  transform: translateY(0);
  transition: transform var(--transition-speed) ease;
}
.wwa-card-content .card-desc {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 0;
  opacity: 1;
  padding-top: 10px;
  transform: translateY(-5px);
  transition: opacity var(--transition-speed) ease,
    transform var(--transition-speed) ease;
}

.story-bg-color {
  background-color: rgb(32, 64, 155);
  color: #fff;
}

.abt-values .h2-heading80 {
  margin-bottom: 0 !important;
}

.our-story {
  padding: 3rem 0;
}
.our-story p {
  font-size: 2rem;
  line-height: 2.8rem;
}
.our-story .h2-heading80 {
  color: #fff;
  margin-bottom: 30px;
}
.our-story .wwa-list {
  margin-left: 2rem;
}
.our-story .wwa-list li {
  list-style-type: disc;
  margin-bottom: 1rem;
}
.our-story.abt-infosys .h2-heading80 {
  color: #3f3f3f;
}
.our-story.abt-infosys .img-bx {
  padding-right: 0;
}
.our-story.our-story-wrap .img-bx,
.our-story.abt-temasek .img-bx,
.our-story.abt-partners .img-bx {
  padding-right: 0;
}
.our-story .img-bx {
  padding-right: 50px;
  margin-bottom: 25px;
}

.testimony-section {
  padding: 3rem 0;
}
.testimony-section .testimony-card {
  display: flex;
  border-radius: 20px;
  background-color: rgb(150, 53, 150);
  margin-bottom: 0;
  padding: 2.5rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
}

h2.milestone-title {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .abt-partners img {
    padding-right: 5rem;
  }
  .who-we-are {
    padding: 5rem 0;
  }
  .who-we-are p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .banner-section .hero-content {
    padding-bottom: 5%;
    max-width: 55%;
  }
  .banner-section.careers-banner .hero-content {
    max-width: 80%;
  }
  .banner-section .banner-title {
    font-size: 6rem !important;
    line-height: 6rem !important;
  }
  .banner-section .hero-description {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .about-us-banner .hero-content {
    max-width: 66.67%;
  }
  .testimony-card {
    padding: 5rem;
    font-size: 2.5rem;
    line-height: 2.6rem;
  }
  .wwa-slider {
    padding: 5rem 0 0;
  }
}
@media (min-width: 992px) {
  .padR-title {
    padding-right: 7rem;
  }
  .banner-section .banner-title {
    font-size: 7.4rem !important;
    line-height: 7.4rem !important;
  }
}
@media (min-width: 1200px) {
  .padR-title {
    padding-right: 10rem;
  }
  .wwa-counter {
    display: none;
  }
  .who-we-are {
    padding: 11rem 0;
  }
  .wwa-card.first-card:hover .wwa-card-content,
  .wwa-card.first-card:focus .wwa-card-content {
    transform: translateY(20px);
  }
  .wwa-card-content .card-title {
    transform: translateY(120px);
  }
  .wwa-card-content .card-desc {
    min-height: 130px;
    opacity: 0;
    transform: translateY(100px);
  }
  .our-story {
    padding: 11rem 0;
  }
  .our-story .h2-heading80 {
    margin-bottom: 50px;
  }
  .our-story.our-story-wrap .img-bx,
  .our-story.abt-infosys .img-bx,
  .our-story.abt-temasek .img-bx {
    padding-right: 100px;
  }
  .our-story .img-bx {
    padding-right: 100px;
  }
  .testimony-section {
    padding: 110px 0;
  }
  .testimony-section .testimony-card {
    border-radius: 24px;
    padding: 70px 90px;
    font-size: 3rem;
    font-weight: 600;
    line-height: 4rem;
  }
}
@media (min-width: 1401px) {
  .banner-section .banner-title {
    font-size: 7.4rem !important;
    line-height: 7rem !important;
  }
}
.review-section {
  position: static; /* Change from absolute to static to flow normally */
  top: auto; /* Reset positioning properties */
  right: auto;
  padding: 2rem 1.5rem;
  width: 100%; /* Allow width to be natural or set to a percentage */
  margin: 3rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Can adjust shadow for mobile */
}

.review-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em; /* Slightly larger heading */
  color: #111111;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.review-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background-color: #27ae60; /* Green color from example */
  color: white;
  border-radius: 50%;
  font-size: 1.5em; /* Size of the quote mark */
  line-height: 32px; /* Vertically center the quote mark */
  text-align: center;
  font-weight: bold;
}

.rating-summary {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.rating-score {
  font-size: 3.5em; /* Larger score */
  font-weight: 700; /* Bolder score */
  color: #27ae60; /* Green color */
  margin-right: 12px;
  line-height: 1; /* Adjust line height for better alignment */
}

.star-rating {
  font-size: 1.6em; /* Larger stars */
  line-height: 1; /* Adjust line height */
}

.star-rating .filled-star {
  color: #27ae60; /* Green for filled stars */
}

.star-rating .empty-star {
  color: #d0d0d0; /* Lighter grey for empty stars */
}

.recommendation-info,
.total-reviews-info {
  font-size: 0.95em;
  color: #4f4f4f;
  margin-bottom: 6px;
}

.total-reviews-info {
  font-size: 0.85em;
  color: #757575;
}

.ceo-approval {
  margin-top: 20px;
  display: flex;
  align-items: center;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

.ceo-avatar {
  width: 55px; /* Slightly larger avatar */
  height: 55px;
  border-radius: 50%;
  margin-right: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid #f0f0f0; /* Subtle border for avatar */
}

.ceo-info p {
  margin: 0;
  font-size: 0.9em;
}

.ceo-info .ceo-name {
  font-weight: 600;
  color: #333333;
  margin-bottom: 3px;
}

.ceo-info .ceo-approval-text {
  color: #5f5f5f;
  font-size: 0.85em;
}

/* Accessibility: Visually hidden class for screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; /* Ensure no border is applied */
}

.reward-careers-section {
  padding: 50px 0 50px;
  /* Mobile styles - expanded by default */
  /* Card variants */
  /* Mobile hover effect - just for image zoom */
}
.reward-careers-section .card-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.reward-careers-section .card {
  background-color: #bee3ff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse; /* Image first on mobile */
  transition: all 0.4s ease;
  margin-bottom: 0;
  border: none;
}
.reward-careers-section .card-content {
  padding: 20px;
  color: #333741;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reward-careers-section .card:hover .card-content,
.reward-careers-section .card:focus .card-content {
  color: #ffffff;
}
.reward-careers-section .card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.reward-careers-section .card-img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.reward-careers-section .card p {
  font-size: 2rem;
  line-height: 2.8rem;
  max-height: 1000px; /* Large enough to show all content by default on mobile */
  opacity: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 10px;
}
.reward-careers-section .card p .btn-connect {
  color: #2d2828;
}
.reward-careers-section .card p .btn-connect:hover,
.reward-careers-section .card p .btn-connect:active,
.reward-careers-section .card p .btn-connect:focus {
  background-color: #382261 !important;
  color: #ffffff !important;
}
.reward-careers-section .card h3 {
  margin-bottom: 5px;
  transition: margin-bottom 0.3s ease;
}
.reward-careers-section .card.inclusive-card,
.reward-careers-section .accordion-button.inclusive-card {
  background-color: #20409b;
}
.reward-careers-section .card.inclusive-card .card-content {
  color: #ffffff !important;
}
.reward-careers-section .card.learning-card,
.reward-careers-section .accordion-button.learning-card {
  background-color: rgb(29, 155, 215);
}
.reward-careers-section .card.innovation-card,
.reward-careers-section .accordion-button.innovation-card {
  background-color: rgb(68, 187, 236);
}
.reward-careers-section .card:hover .card-img img,
.reward-careers-section .card:focus .card-img img {
  transform: scale(1);
}
.reward-careers-section .discover-career-desktop {
  display: none;
}
.reward-careers-section .discover-career-mobile {
  display: block;
}
.reward-careers-section .career-accordion .accordion-body {
  border: none;
}
.reward-careers-section .career-accordion .accordion-button {
  font-size: 2rem;
  line-height: 2.8rem;
  padding-left: 30px;
  border-bottom: none;
  padding-right: 30px;
  color: #fff;
}
.reward-careers-section .career-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 2.5rem;
  transition: transform 0.2s ease-in-out;
}
.reward-careers-section .career-accordion .accordion-button::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/plus-white.svg");
}
.reward-careers-section
  .career-accordion
  .accordion-button:not(.collapsed)::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/minus-white.svg");
}
.reward-careers-section
  .career-accordion
  .accordion-button:hover
  .text-content {
  transform: none;
}
.reward-careers-section .career-accordion .inclusive-card-content {
  background-color: #20409b;
  color: #ffffff;
}
.reward-careers-section .career-accordion .ld-card-content {
  background-color: #1d9bd7;
}
.reward-careers-section .career-accordion .inv-card-content {
  background-color: #44bbec;
}
.reward-careers-section .career-accordion .inclusive-card-content p,
.reward-careers-section .career-accordion .ld-card-content p,
.reward-careers-section .career-accordion .inv-card-content p {
  color: #ffffff;
}
.reward-careers-section .career-accordion .text-content {
  font-size: 2.2rem;
  line-height: 2.8rem;
  min-height: 50px;
}
.reward-careers-section .career-accordion .card {
  border: none;
}
.reward-careers-section .accordian {
  --bs-accordion-border-width: 0;
}

.life-section {
  /* Content wrapper - for sliding animation */
  /* Heading styles */
  /* Text container - visible on mobile, hidden on desktop */
}
.life-section .li_Sec-desktop {
  display: none;
}
.life-section .li_Sec-mobile {
  display: block;
}
.life-section .feature-card {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 0;
  overflow: hidden;
  background-color: #2e1a47; /* Purple background color for hover/mobile */
  transition: all 0.3s ease;
  padding: 30px;
  margin-bottom: 30px;
}
.life-section .feature-card__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.life-section .feature-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.life-section .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  z-index: 2;
}
.life-section .feature-card__content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  transition: all 0.3s ease;
}
.life-section .card-heading {
  color: white;
  font-size: 2.2rem;
  line-height: 2.8rem;
  margin-bottom: 10px; /* Added 50px padding at bottom of heading */
  font-weight: 600;
}
.life-section .card-text {
  color: #f0f0f0;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}
.life-section .lifeiCompaz-prev {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all var(--transition-speed) ease;
  margin-top: 0;
  background-image: url("/content/dam/infosys-icompaz/en/images/prev-arrow.svg");
}
.life-section .lifeiCompaz-prev::after {
  display: none;
}
.life-section .lifeiCompaz-prev::before {
  content: "";
  margin-right: 10px;
  position: absolute;
  left: 0;
  color: #7e7e7e;
  font-size: 16px;
}
.life-section .lifeiCompaz-next {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all var(--transition-speed) ease;
  margin-top: 0;
  background-image: url("/content/dam/infosys-icompaz/en/images/next-arrow.svg");
}
.life-section .lifeiCompaz-next::after {
  display: none;
}
.life-section .lifeiCompaz-next::before {
  content: "";
  margin-left: 10px;
  position: absolute;
  right: 0;
  color: #7e7e7e;
  font-size: 16px;
}
.life-section .lifeiCompaz-prev:after,
.life-section .lifeiCompaz-next:after {
  content: none !important;
}
.life-section .lifeiCompaz-next.swiper-button-disabled,
.life-section .lifeiCompaz-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.recognition-section {
  padding: 3rem 0;
  /* custome slider Navigation and Progress */
}
.recognition-section .rec-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.recognition-section .rec-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.recognition-section .rec-progress-container {
  flex-grow: 1;
  max-width: 150px;
  height: 2px;
  background-color: rgba(55, 36, 97, 0.2);
  position: relative;
}
.recognition-section .rec-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgb(55, 36, 97);
  width: 25%;
  transition: width var(--transition-speed);
}
.recognition-section .rec-counter {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin: 0 10px;
  color: rgb(55, 36, 97);
}
.recognition-section .rec-nav-controls {
  display: flex;
  align-items: center;
}
.recognition-section .rec-nav-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text-color-ss);
  cursor: pointer;
  transition: background-color var(--transition-speed);
}
.recognition-section .rec-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.recognition-section .rec-nav-button svg {
  width: 20px;
  height: 20px;
}
.recognition-section .rec-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.recognition-section .rec-card img {
  width: 100%;
}
.recognition-section .rec-card .rec-card-content {
  background-color: rgba(55, 36, 97, 0.04);
  padding: 30px 30px 50px;
  min-height: 170px;
}
.recognition-section .rec-card .rec-card-content .head {
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.work-tg-section {
  background-color: rgb(55, 36, 97);
  padding: 3rem 0;
  margin-bottom: 11rem;
}
.work-tg-section h2 {
  color: #fff;
}
.work-tg-section .wt-card-content {
  background-color: rgb(150, 53, 150);
  padding: 2.4rem;
  min-height: 108px;
}
.work-tg-section .wt-card-content .head {
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.work-tg-section .tg-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.work-tg-section .tg-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.work-tg-section .tg-progress-container {
  flex-grow: 1;
  max-width: 150px;
  height: 2px;
  background-color: rgba(158, 158, 158, 0.2);
  position: relative;
}
.work-tg-section .tg-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgb(255, 255, 255);
  width: 25%;
  transition: width var(--transition-speed);
}
.work-tg-section .tg-counter {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin: 0 10px;
  color: #fff;
}
.work-tg-section .tg-nav-controls {
  display: flex;
  align-items: center;
}
.work-tg-section .tg-nav-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}
.work-tg-section .tg-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.work-tg-section .tg-nav-button svg {
  width: 20px;
  height: 20px;
}
.work-tg-section .tg-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.work-tg-section .swiper-arrow-prev.tg-slide-prev {
  background-image: url("/content/dam/infosys-icompaz/en/images/prev-arrow-white.svg");
  width: 50px;
  height: 50px;
}
.work-tg-section .swiper-arrow-next.tg-slide-next {
  background-image: url("/content/dam/infosys-icompaz/en/images/next-arrow-white.svg");
  width: 50px;
  height: 50px;
}

.text-col p a {
  color: #963596;
}
.text-col p a:hover {
  text-decoration: underline;
}

/* error page css */
.banner-gradient {
  background-color: #963596;
}
#banner_home {
  padding: 100px 0 180px;
}
.write-us-btn {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.write-us-btn:hover,
.write-us-btn:focus,
.write-us-btn:active {
  background-color: #fff !important;
  color: #000 !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.write-us-btn {
  margin-left: 1.5rem;
}
/* error page css end */

/* Make text visible on mobile */
@media screen and (min-width: 400px) {
  .text-content {
    line-height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .feature-card__text {
    max-height: 1000px;
    opacity: 1;
  }
  .work-tg-section {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .recognition-section .rec-card .rec-card-content {
    min-height: 240px;
  }
  .recognition-section .rec-card .rec-card-content p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .reward-careers-section .card h3 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 5rem;
  }
}
/* Tablet and Desktop Styles */
@media (min-width: 992px) {
  .work-tg-section {
    padding: 11rem 0;
  }
  .recognition-section {
    padding: 11rem 0;
  }
  .reward-careers-section {
    padding: 0 0 11rem;
    /* Desktop specific - collapsed by default */
    /* Desktop hover effects */
  }
  .reward-careers-section .discover-career-desktop {
    display: block;
  }
  .reward-careers-section .discover-career-mobile {
    display: none;
  }
  .reward-careers-section .card {
    flex-direction: row; /* Revert to horizontal on desktop */
    height: 150px; /* Initial compact height */
    transition: all 0.6s ease;
    text-align: right;
    padding: 20px;
  }
  .reward-careers-section .card:first-child,
  .reward-careers-section .card.inclusive-card {
    height: 390px; /* Expanded height for first card */
  }
  .reward-careers-section .card:first-child p {
    max-height: 300px;
    opacity: 1 !important; /* Show first card content by default */
  }
  .reward-careers-section .card-content {
    width: 60%;
    padding: 30px;
    padding-top: 25px;
    text-align: left;
  }
  .reward-careers-section .card-img {
    width: 40%;
    height: auto;
    transition: all 0.6s ease;
  }
  .reward-careers-section .card p {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
  .reward-careers-section .card h3 {
    margin-bottom: 15px;
  }
  .reward-careers-section .card:hover,
  .reward-careers-section .card:focus {
    background-color: #20409b;
    height: 390px; /* Expanded height on hover without sliding up */
    padding-right: 30px;
  }
  .reward-careers-section .card:hover .card-img,
  .reward-careers-section .card:focus .card-img {
    transition: all 0.6s ease;
    transform: translateY(0px);
  }
  .reward-careers-section .card:hover p,
  .reward-careers-section .card:focus p {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
  }
  .reward-careers-section .card:hover h2,
  .reward-careers-section .card:focus h2 {
    margin-bottom: 5px;
  }
  .reward-careers-section .accordion-button:hover {
    color: #fff;
  }
  .reward-careers-section .career-accordion {
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
  }
  .reward-careers-section .accordion-item {
    border: none;
  }
  .reward-careers-section .accordion-button:not(.collapsed) {
    background-color: rgb(150, 53, 150);
    color: #fff;
  }
  .reward-careers-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
  }
  .reward-careers-section .accordion-button .text-content {
    display: inline-block;
    transition: transform var(--transition-duration) var(--transition-timing);
  }
  .reward-careers-section .accordion-button:hover .text-content {
    transform: translateX(var(--slide-distance));
  }
  .reward-careers-section .accordion-body {
    padding: 30px;
    background-color: rgb(246, 245, 248);
    border-bottom: none;
  }
  .reward-careers-section .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .reward-careers-section .image-col {
    flex: 1;
  }
  .reward-careers-section .text-col {
    flex: 1.5;
  }
  .reward-careers-section .image-col img {
    width: 100%;
    border-radius: 4px;
  }
  .reward-careers-section .text-col p {
    color: #333;
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 20px;
  }
  .reward-careers-section .btn-custom {
    background-color: #8e44ad;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
  }
  .reward-careers-section .btn-custom:hover {
    background-color: #382261;
    color: white;
  }
  .life-section {
    padding: 11rem 0;
    /* Show image on desktop */
    /* Hover state for desktop */
    /* Focus state for accessibility - same as hover effect */
  }
  .life-section .li_Sec-desktop {
    display: block;
  }
  .life-section .li_Sec-mobile {
    display: none;
  }
  .life-section .feature-card {
    font-weight: 500;
    min-height: 500px;
    transition: all 0.3s ease;
  }
  .life-section .li_Sec-desktop .col-md-4,
  .life-section .li_Sec-desktop .col-md-6 {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  .life-section .feature-card__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
  }
  .life-section .feature-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .life-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    transform: translateY(
      calc(100% - 208px)
    ); /* Adjusted to show heading with padding */
    transition: transform 0.4s ease;
    z-index: 2;
  }
  .life-section .feature-card:hover .card-content {
    transform: translateY(0);
  }
  .life-section .card-heading {
    color: white;
    margin-bottom: 80px; /* Added 50px padding at bottom of heading */
    font-size: 2.8rem;
    line-height: 3.4rem;
    font-weight: 600;
    min-height: 135px;
    display: flex;
    align-items: flex-end;
  }
  .life-section .feature-card:hover .card-heading {
    margin-bottom: 15px; /* Reduce padding on hover */
    transition: margin-bottom 0.4s ease;
  }
  .life-section
    .feature-card:hover
    .card-heading
    .img-readBottom-overlay:hover::before {
    opacity: 0;
  }
  .life-section .feature-card.img-readBottom-overlay:hover::before {
    opacity: 0; /* Reduce opacity 0 on hover */
  }
  .life-section .card-text {
    color: #f0f0f0;
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
  }
  .life-section .feature-card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
  }
  .life-section .feature-card:hover .feature-card__image {
    opacity: 0; /* Hide image completely */
  }
  .life-section .feature-card:focus-within .feature-card__image {
    opacity: 0;
  }
  .life-section .feature-card:focus-within .card-heading {
    margin-bottom: 15px; /* Reduce padding on hover */
    transition: margin-bottom 0.4s ease;
  }
  .life-section .feature-card:focus-within .card-text {
    opacity: 1;
    transform: translateY(0);
  }
  .life-section .feature-card:focus-within .card-content {
    transform: translateY(0);
  }
  .recognition-section .rec-card .rec-card-content {
    background-color: rgba(55, 36, 97, 0.04);
    padding: 30px 30px 50px;
    min-height: 180px;
  }
  .recognition-section .rec-card .rec-card-content .head {
    font-weight: 600;
    margin-bottom: 2.4rem;
  }
  .work-tg-section .wt-card {
    width: 100%;
  }
  .work-tg-section .wt-card .wt-img {
    overflow: hidden;
  }
  .work-tg-section .wt-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .work-tg-section .wt-card .wt-card-content {
    background-color: rgb(150, 53, 150);
    padding: 30px;
    min-height: 108px;
  }
  .work-tg-section .wt-card .wt-card-content .head {
    font-size: 2.8rem;
    line-height: 3.6rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
  }
  .work-tg-section .wt-card:hover img {
    transform: scale(1.1);
  }
}
@media (min-width: 1200px) {
  .reward-careers-section .accordion-button {
    font-size: 3rem;
    line-height: 3.5;
    color: rgb(45, 40, 40);
    padding-left: 50px;
    border-bottom: 2px solid rgba(51, 55, 65, 0.2);
  }
  .work-tg-section .tg-counter,
  .work-tg-section .tg-navigation {
    display: none;
  }
  .recognition-section .rec-card .rec-card-content {
    min-height: 260px;
  }
}
@media (min-width: 1400px) {
  .reward-careers-section .our-solutions-details {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .reward-careers-section .benefits-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .reward-careers-section .offerings-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .reward-careers-section .accordion-button {
    font-size: 3rem;
    line-height: 3.5;
    color: #fff;
    padding-left: 50px;
    border-bottom: none;
    padding-right: 30px;
  }
  .recognition-section .rec-card .rec-card-content {
    min-height: 260px;
  }
}
@media (min-width: 1200px) {
  .review-section {
    position: absolute;
    /* Adjust top/left/right/bottom as needed for desired placement on the banner */
    bottom: -18vh;
    right: 15px;
    background-color: rgb(
      255,
      255,
      255
    ); /* Slightly more opaque for readability */
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #333333;
    border: 1px solid #e0e0e0;
    width: auto;
    z-index: 2;
  }
  .review-section h2 {
    font-size: 1.4em; /* Adjust heading size for mobile */
  }
  .rating-summary {
    margin-bottom: 8px; /* Adjust spacing for mobile */
  }
  .rating-score {
    font-size: 4.8rem; /* Adjust score size for mobile */
  }
  .star-rating {
    font-size: 1.4em; /* Adjust star size for mobile */
  }
  .recommendation-info,
  .total-reviews-info {
    font-size: 0.85em; /* Adjust font size for mobile */
  }
}
section.career {
  color: #ffffff;
  padding: 30px 0;
  position: relative;
}
section.career .bg-career {
  min-height: 480px;
  padding: 0 1.5rem;
}

section.career .bg-career div {
  z-index: 20;
}
section.career .bg-career .title-career {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
}
section.career .bg-career .career-desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 1.5rem 0;
}

.metro-grid.home-section {
  grid-auto-rows: 35rem;
}
.metro-grid.home-section .metro-item {
  cursor: default;
  max-height: 40rem !important;
}

.metro-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 2rem;
  padding: 0;
}
.metro-grid .metro-item {
  position: relative;
  overflow: hidden;
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  max-height: 335px !important;
}
.metro-grid .metro-item:first-child .metro-content {
  background-color: rgba(80, 150, 67, 0.8);
}
.metro-grid .metro-item:first-child .metro-content h3,
.metro-grid .metro-item:first-child .metro-content p {
  color: #ffffff;
}
.metro-grid .metro-item:nth-child(2) .metro-content {
  background-color: rgba(250, 224, 172, 0.8);
}
.metro-grid .metro-item:nth-child(2) .metro-content h3,
.metro-grid .metro-item:nth-child(2) .metro-content p {
  color: #ffffff;
}
.metro-grid .metro-item:nth-child(3) .metro-content {
  background-color: rgba(150, 53, 150, 0.8);
}
.metro-grid .metro-item:nth-child(3) .metro-content h3,
.metro-grid .metro-item:nth-child(3) .metro-content p {
  color: #ffffff;
}
.metro-grid .metro-item:last-child .metro-content {
  background-color: rgba(55, 36, 97, 0.8);
}
.metro-grid .metro-item:last-child .metro-content h3,
.metro-grid .metro-item:last-child .metro-content p {
  color: #ffffff;
}
.metro-grid .metro-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.metro-grid .metro-item .metro-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  transition: all 0.3s ease;
}
.metro-grid .metro-item .metro-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3rem;
  margin: 0;
  padding-bottom: 10px;
  z-index: 2;
}
.metro-grid .metro-item .metro-content p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  z-index: 2;
}
.metro-grid .metro-item:hover img,
.metro-grid .metro-item:focus img {
  transform: scale(1.1);
}
.metro-grid .metro-item:hover .metro-content h3,
.metro-grid .metro-item:focus .metro-content h3 {
  color: #ffffff;
}
.metro-grid .metro-item:hover .metro-content p,
.metro-grid .metro-item:focus .metro-content p {
  opacity: 1;
  transform: translateY(0);
}

.benefits-section.intelligent-operations .metro-grid .metro-item,
.benefits-section.benefits-our-solution .metro-grid .metro-item {
  grid-template-columns: auto;
}

@media (max-width: 425px) {
  .metro-item {
    max-height: 175px;
  }
}
@media (min-width: 768px) {
  .metro-grid.home-section {
    grid-auto-rows: auto;
  }
  section.career {
    padding: 11rem 70px;
  }
  section.career .bg-career {
    padding: 0rem;
  }
  section.career .bg-career::after {
    display: none;
  }
  section.career .bg-career .title-career {
    font-size: 3.6rem;
    line-height: 5rem;
  }
  section.career .bg-career .career-desc {
    font-size: 2rem;
    line-height: 2.8rem;
    margin: 2rem 0;
  }
  .metro-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .metro-grid .metro-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .metro-grid .metro-item:last-child {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .metro-grid .metro-item img {
    max-height: 325px;
    min-width: 345px;
  }
  .metro-grid .metro-item p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 1.6rem 0 0;
  }
  .metro-grid .metro-item.wide {
    grid-column: span 2;
  }
  .metro-grid .metro-item:nth-child(n) .metro-content {
    background: none;
  }
  .metro-grid .metro-item .metro-content {
    padding: 4.8rem 3.6rem;
  }
  .metro-grid .metro-item .metro-content h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .metro-grid:hover .metro-item:first-child:hover .metro-content,
  .metro-grid:hover .metro-item:first-child:focus .metro-content,
  .metro-grid:focus .metro-item:first-child:hover .metro-content,
  .metro-grid:focus .metro-item:first-child:focus .metro-content {
    background-color: rgb(80, 150, 67);
  }
  .metro-grid:hover .metro-item:nth-child(2):hover .metro-content,
  .metro-grid:hover .metro-item:nth-child(2):focus .metro-content,
  .metro-grid:focus .metro-item:nth-child(2):hover .metro-content,
  .metro-grid:focus .metro-item:nth-child(2):focus .metro-content {
    background-color: #e1910e;
  }
  .metro-grid:hover .metro-item:nth-child(2):hover .metro-content h3,
  .metro-grid:hover .metro-item:nth-child(2):hover .metro-content p,
  .metro-grid:hover .metro-item:nth-child(2):focus .metro-content h3,
  .metro-grid:hover .metro-item:nth-child(2):focus .metro-content p,
  .metro-grid:focus .metro-item:nth-child(2):hover .metro-content h3,
  .metro-grid:focus .metro-item:nth-child(2):hover .metro-content p,
  .metro-grid:focus .metro-item:nth-child(2):focus .metro-content h3,
  .metro-grid:focus .metro-item:nth-child(2):focus .metro-content p {
    color: #ffffff;
  }
  .metro-grid:hover .metro-item:nth-child(3):hover .metro-content,
  .metro-grid:hover .metro-item:nth-child(3):focus .metro-content,
  .metro-grid:focus .metro-item:nth-child(3):hover .metro-content,
  .metro-grid:focus .metro-item:nth-child(3):focus .metro-content {
    background-color: rgb(150, 53, 150);
  }
  .metro-grid:hover .metro-item:last-child:hover .metro-content,
  .metro-grid:hover .metro-item:last-child:focus .metro-content,
  .metro-grid:focus .metro-item:last-child:hover .metro-content,
  .metro-grid:focus .metro-item:last-child:focus .metro-content {
    background-color: rgb(55, 36, 97);
  }
  .metro-grid:hover .metro-item:last-child:hover .metro-content h3,
  .metro-grid:hover .metro-item:last-child:hover .metro-content p,
  .metro-grid:hover .metro-item:last-child:focus .metro-content h3,
  .metro-grid:hover .metro-item:last-child:focus .metro-content p,
  .metro-grid:focus .metro-item:last-child:hover .metro-content h3,
  .metro-grid:focus .metro-item:last-child:hover .metro-content p,
  .metro-grid:focus .metro-item:last-child:focus .metro-content h3,
  .metro-grid:focus .metro-item:last-child:focus .metro-content p {
    color: #ffffff;
  }
  .benefits-section.intelligent-operations .metro-grid .metro-item,
  .benefits-section.tech-adoption .metro-grid .metro-item {
    grid-template-columns: auto;
  }
  .benefits-section.intelligent-operations
    .metro-grid
    .metro-item:hover
    .metro-content,
  .benefits-section.tech-adoption .metro-grid .metro-item:hover .metro-content {
    background: none;
  }
}
@media (min-width: 992px) {
  section.career .bg-career .title-career {
    font-size: 4rem;
    line-height: 5rem;
  }
  .metro-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 30rem;
  }
  .metro-grid .metro-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .metro-grid .metro-item:last-child {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .metro-grid .metro-item .metro-content p {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .metro-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 33rem;
  }
  .metro-grid .metro-item img {
    max-height: unset;
  }
  .metro-grid .metro-item.wide {
    grid-column: span 2 !important;
  }
}
@media (min-width: 1400px) {
  .metro-grid .metro-item .metro-content h3 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.clife {
  padding: 3rem 0;
}
.clife .clife-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .clife {
    padding: 11rem 5rem;
  }
  .clife .clife-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.2rem;
    margin-bottom: 3rem;
  }
  .clife .metro-grid {
    display: grid;
    gap: 0;
    overflow: hidden;
  }
  .clife .metro-grid:hover .metro-item:hover img {
    opacity: 0;
  }
  .clife .metro-grid:hover .metro-item:nth-child(1):hover {
    background-color: #20409b;
  }
  .clife .metro-grid:hover .metro-item:nth-child(2):hover {
    background-color: #b64326;
  }
  .clife .metro-grid:hover .metro-item:nth-child(3):hover {
    background-color: #007cc3;
  }
  .clife .metro-grid:hover .metro-item:nth-child(4):hover {
    background-color: #6cb43f;
  }
  .clife .metro-grid:hover .metro-item:nth-child(5):hover {
    background-color: #14b28f;
  }
  .clife .metro-grid .metro-item {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  .clife .metro-grid .metro-item:nth-child(3) .metro-content {
    transform: translateY(calc(100% - 167px));
  }
  .clife .metro-grid .metro-item .metro-content {
    background: none !important;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(calc(100% - 132px));
    transition: transform 0.4s ease;
  }
  .clife .metro-grid .metro-item .metro-content h3 {
    color: #ffffff;
    margin: 0 0 0.5rem;
  }
  .clife .metro-grid .metro-item .metro-content .clife-desc {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }
  .clife .metro-grid .metro-item:hover .metro-content {
    transform: translateY(0);
  }
  .clife .metro-grid .metro-item:hover .metro-content .clife-desc {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .clife .clife-title {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}
.connect-bs-modal .modal-dialog {
  position: relative;
  width: auto;
  margin: 1.5rem;
  margin-top: 80px;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}
.connect-bs-modal .form-information {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #6c757d;
}
.connect-bs-modal .form-information a {
  text-decoration: underline;
}
.connect-bs-modal .modal-title {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.6rem !important;
  line-height: 3.6rem !important;
  margin-bottom: 1.5rem;
}
.connect-bs-modal .close,
.connect-bs-modal .close-bs-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1060;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.connect-bs-modal .close-bs-modal {
  background-image: url("/content/dam/infosys-icompaz/en/images/close-white.svg");
  background-size: 100% 100%;
}
.connect-bs-modal .modal-left {
  flex: 0 0 100%;
  max-width: 100%;
  background-color: rgb(55, 36, 97);
  color: #fff;
  padding: 8rem 3rem 5rem;
  display: flex;
  flex-direction: column;
}
.connect-bs-modal .contact-info__connect {
  padding-bottom: 3rem;
}
.connect-bs-modal .modal-right {
  flex: 0 0 100%;
  max-width: 100%;
  background-color: #fff;
  padding: 3rem 4rem;
}
.connect-bs-modal .office-info {
  margin-top: 60px;
}
.connect-bs-modal .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.connect-bs-modal .social-icons a,
.connect-bs-modal .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #3b2d5e;
  border-radius: 5px;
  text-decoration: none;
}
.connect-bs-modal .btn-submit {
  background-color: #8e44ad;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.8rem;
  cursor: pointer;
}
.connect-bs-modal .btn-submit:hover,
.connect-bs-modal .btn-submit:focus {
  background-color: #382261;
  color: #fff;
}
.connect-bs-modal .mand-txt {
  color: #ed1c2e;
}
.connect-bs-modal .required-note {
  color: #6c757d;
  margin: 1.8rem 0 0.5rem;
  line-height: 2rem;
}
.connect-bs-modal .required {
  color: #5b5972;
  font-style: italic;
  margin: 2rem 2rem 3rem 0;
  font-size: 1.8rem;
}
.connect-bs-modal .lets-connect-mobile {
  display: block;
}
.connect-bs-modal .lets-connect-mobile h5 {
  color: rgb(55, 36, 97);
}
.connect-bs-modal .form-group {
  position: relative;
  margin-bottom: 10px;
}
.connect-bs-modal .form-control {
  width: 100%;
  height: 52px;
  padding: 0.5rem 0;
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2d2828;
  border-radius: 0;
  font-size: 1.8rem;
  color: rgb(45, 40, 40);
}
.connect-bs-modal .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #8e44ad;
}
.connect-bs-modal .form-control::-moz-placeholder {
  color: transparent;
}
.connect-bs-modal .form-control::placeholder {
  color: transparent;
}
.connect-bs-modal .form-textarea {
  min-height: 80px;
  resize: none;
}
.connect-bs-modal .form-select {
  width: 100%;
  height: 6rem;
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(45, 40, 40);
  border-radius: 0;
  font-size: 1.8rem;
}
.connect-bs-modal .form-select:focus {
  outline: 2px solid;
  box-shadow: none;
}
.connect-bs-modal .form-select option {
  font-size: 1.8rem;
  padding: 0 1rem;
}
.connect-bs-modal .form-floating > label {
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-size: 1.8rem;
  color: rgb(45, 40, 40);
  pointer-events: none;
  transition: all 0.2s ease;
  padding-left: 0;
}
.connect-bs-modal .form-floating > .form-control,
.connect-bs-modal .form-floating > .form-select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(45, 40, 40);
  padding-left: 0;
}
.connect-bs-modal
  .form-floating
  .form-control:not(:-moz-placeholder-shown)
  ~ label {
  transform: scale(0.85) translateY(-1.5rem) translateX(0.25rem);
  color: #8e44ad;
}
.connect-bs-modal .form-floating .form-control:focus ~ label,
.connect-bs-modal .form-floating .form-control:not(:placeholder-shown) ~ label,
.connect-bs-modal .form-floating .form-select:focus ~ label,
.connect-bs-modal .form-floating .form-select:not([value=""]) ~ label {
  transform: scale(0.85) translateY(-1.5rem) translateX(0.25rem);
  color: #8e44ad;
}
.connect-bs-modal .form-switch {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 5px;
  -webkit-tap-highlight-color: transparent;
  float: left;
  padding-bottom: 18px;
  padding-left: 0;
  margin-top: 0;
  margin-right: 10px;
}
.connect-bs-modal .form-switch i {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 23px;
  display: inline-block;
  margin-right: 0.2rem;
  position: relative;
  transition: all 0.3s linear 0s;
  vertical-align: text-bottom;
  height: 20px !important;
  width: 38px !important;
}
.connect-bs-modal .form-switch i:before {
  background-color: rgba(0, 0, 0, 0.17);
  border-radius: 11px;
  content: "";
  left: 0;
  position: absolute;
  transform: translate3d(2px, 2px, 0px) scale3d(1, 1, 1);
  transition: all 0.25s linear 0s;
  height: 16px !important;
  width: 34px !important;
}
.connect-bs-modal .form-switch i:after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
  width: 16px !important;
  height: 16px !important;
}
.connect-bs-modal .form-switch:active i:after {
  width: 28px;
  transform: translate3d(2px, 2px, 0);
}
.connect-bs-modal .form-switch:active input:checked + i::after {
  transform: translate3d(16px, 2px, 0);
}
.connect-bs-modal .form-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.connect-bs-modal .form-switch input:checked + i {
  background-color: #963596;
}
.connect-bs-modal .form-switch input:checked + i:before {
  transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
}
.connect-bs-modal .form-switch input:checked + i::after {
  transform: translate3d(22px, 2px, 0);
}
.connect-bs-modal .form-switch input:focus {
  outline: 2px solid;
}
.panel-career {
  background-color: #372461;
  padding: 10rem 6rem 5rem;
}
.career .panel-career-img {
  display: flex;
  align-items: stretch;
  padding: 0;
  justify-content: center;
  overflow: hidden;
}

.career .panel-career-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.success-message {
  min-height: 500px;
  position: relative;
}
.success-message:after {
  background: url("/content/dam/infosys-icompaz/en/images/icon-success.svg")
    no-repeat center center;
  position: absolute;
  content: "";
  left: 10%;
  right: 0;
  width: 80%;
  top: -55px;
  height: 80%;
}
.thank-note {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .connect-bs-modal .modal-left {
    padding-bottom: 1rem;
  }
  .connect-bs-modal .modal-right {
    padding-top: 3rem;
  }
}
@media (min-width: 992px) {
  .connect-bs-modal .modal-dialog {
    max-width: 950px;
    margin: 1.75rem auto;
    margin-top: 0;
    padding-top: 100px;
  }
  .connect-bs-modal .modal-content {
    display: flex;
    flex-direction: row;
  }
  .connect-bs-modal .modal-left {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .connect-bs-modal .modal-right {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .connect-bs-modal .close-bs-modal {
    background-image: url("/content/dam/infosys-icompaz/en/images/close-black.svg");
  }
  .connect-bs-modal .close {
    top: 15px;
    right: 15px;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "myriad-pro", Arial, sans-serif;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #2d2828;
}

a {
  text-decoration: none;
  color: #000000;
}

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

.container {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.no-border-bottom {
  border-bottom: 0 !important;
}

.pa-b-50 {
  padding-bottom: 5rem;
}

.pa-t-50 {
  padding-top: 5rem;
}

.ma-b-18 {
  margin-bottom: 1.8rem;
}

.ma-b-20 {
  margin-bottom: 2rem;
}

.ma-b-24 {
  margin-bottom: 2.4rem;
}

.ma-b-35 {
  margin-bottom: 3.5rem;
}

.ma-b-40 {
  margin-bottom: 4rem;
}

.ma-b-60 {
  margin-bottom: 6rem;
}

.ma-t-18 {
  margin-top: 1.8rem;
}

.ma-t-20 {
  margin-top: 2rem;
}

.ma-t-24 {
  margin-top: 2.4rem;
}

.ma-t-35 {
  margin-top: 3.5rem;
}

.ma-t-40 {
  margin-top: 4rem;
}

.ma-t-60 {
  margin-top: 6rem;
}

.overview-para {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #000000;
}

.para-small16 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #555555;
}

.para-small18 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #9d999a;
}

.skip-to-content {
  position: absolute;
  top: -50px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

/*.img-read-overlay:hover::before,
.img-readTop-overlay:hover::before,
.img-readBottom-overlay:hover::before {
  background: none;
  transition: all 0.3s ease;
}*/
.img-read-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  ); /* Slight black at bottom */
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-readTop-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  ); /* Completely transparent at bottom */
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-bannerTop-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(147, 51, 234, 0.8),
    rgba(168, 85, 247, 0.6),
    rgba(196, 181, 253, 0.4),
    rgba(88, 28, 135, 0.7)
  ); /* Dark purple at bottom */
  mix-blend-mode: multiply;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-readBottom-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.4)
  ); /* Slight black at bottom */
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-readBottom__blur-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  -webkit-backdrop-filter: blur(12px) brightness(0.8);
  backdrop-filter: blur(12px) brightness(0.8);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-readTop__blur-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  -webkit-backdrop-filter: blur(12px) brightness(0.8);
  backdrop-filter: blur(12px) brightness(0.8);
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  mask-image: linear-gradient(
    to top,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.menuTop__blur-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  -webkit-backdrop-filter: blur(12px) brightness(0.8);
  backdrop-filter: blur(12px) brightness(0.8);
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  mask-image: linear-gradient(
    to top,
    transparent 0px,
    rgba(0, 0, 0, 0.0381) 8px,
    rgba(0, 0, 0, 0.1464) 16px,
    rgba(0, 0, 0, 0.3087) 24px,
    rgba(0, 0, 0, 0.5) 32px,
    rgba(0, 0, 0, 0.6913) 40px,
    rgba(0, 0, 0, 0.8536) 48px,
    rgba(0, 0, 0, 0.9619) 56px,
    rgb(0, 0, 0) 64px
  );
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.menuBottom-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.4)
  ); /* Slight black at bottom */
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.img-readTop__blur-overlay:hover::before,
.img-readBottom__blur-overlay:hover::before {
  background: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media screen and (max-width: 768px) {
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .mb-xs-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 5rem !important;
  }
}
.infograph-section {
  background-color: #20409d;
  padding: 3rem 0;
}
.infograph-section h2 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  color: #fff;
}
.infograph-section p.content {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #fff;
}
.infograph-section .infograph-sldr {
  height: 200px; /* or adjust as needed */
  margin-top: 30px;
}
.infograph-section .infograph-sldr .bg-content {
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 700;
  opacity: 0.1;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: scale(0.4);
  transform-origin: 0 100%;
  transition: transform 0.6s ease-out;
}
.infograph-section .infograph-sldr .title {
  font-size: 4.9rem;
  line-height: 5rem;
  color: #fff;
  margin-top: 45px;
}
.infograph-section .infograph-sldr .content {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #fff;
}
.infograph-section .infograph-sldr .swiper-slide-active .bg-content {
  transform: scale(1);
}
.infograph-section .infograph-img svg {
  width: 100%;
  max-width: 550px;
  max-height: 775px;
  height: auto;
}
.infograph-section .infograph-img svg a {
  cursor: default;
  outline: none !important;
}
.domain_link:focus g,
.domain_link:focus-visible g,
.domain_link:active g,
.domain_link:focus-visible,
.domain_link:focus g:focus,
.domain_link:active g:active {
  fill: #ffffff;
  filter: drop-shadow(0 0 0 3px #ffffff);
  outline: none;
}
.domain_link:focus path,
.domain_link:focus polygon,
.domain_link:focus rect {
  stroke: #ffffff;
  stroke-width: 4px;
}
.infograph-section .infograph-img .domain_link > g {
  transition: all 0.5s ease-in-out;
}
.infograph-section .infograph-img .domain_link.active > g {
  opacity: 1 !important;
}
.infograph-section .Ig-prev {
  background-image: url("/content/dam/infosys-icompaz/en/images/ig-up.png");
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
  background-size: 100%;
  opacity: 1;
}
.infograph-section .Ig-prev::after {
  display: none;
}
.infograph-section .Ig-next {
  background-image: url("/content/dam/infosys-icompaz/en/images/ig-down.png");
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
  background-size: 100%;
  opacity: 1;
}
.infograph-section .Ig-next::after {
  display: none;
}

.infograph-animate-row {
  display: block;
  position: relative;
  min-height: unset;
}
.infograph-animate-row .infograph-swiper-col,
.infograph-animate-row .infograph-svg-col {
  position: static;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  transition: none;
  z-index: auto;
}

@media (min-width: 768px) {
  .infograph-section {
    padding: 11rem 0;
  }
  .infograph-section h2 {
    font-size: 6rem;
    line-height: 5.4rem;
  }
  .infograph-section .infograph-sldr .bg-content {
    font-size: 8rem;
    line-height: 8rem;
  }
  .infograph-section .infograph-sldr .title {
    font-size: 4.9rem;
    line-height: 5rem;
  }
  .infograph-section .infograph-sldr .content {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 992px) {
  .infograph-section .infograph-img svg {
    width: 90%;
  }
  .infograph-section .infograph-sldr {
    height: 300px;
  }
  .infograph-animate-row {
    position: relative;
    min-height: 550px;
  }
  .infograph-animate-row .infograph-swiper-col,
  .infograph-animate-row .infograph-svg-col {
    position: absolute;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    width: auto;
    width: 55%;
  }
  .infograph-animate-row .infograph-swiper-col {
    z-index: 1;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 45%;
  }
  .infograph-animate-row .infograph-svg-col {
    z-index: 2;
    right: 50%;
    transform: translateX(50%);
  }
  .infograph-animate-row .infograph-sldr {
    margin-top: 0;
  }
  .infograph-animate-row.split .infograph-swiper-col {
    left: 0%;
    opacity: 1;
    transform: translate(0, -50%);
  }
  .infograph-animate-row.split .infograph-svg-col {
    right: 0;
    transform: translateX(0%);
  }
}
@media (min-width: 1200px) {
  .infograph-section {
    padding: 110px 0;
  }
  .infograph-section h2 {
    font-size: 6.4rem;
    line-height: 6.4rem;
  }
  .infograph-section p.content {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .infograph-section .infograph-sldr .bg-content {
    font-size: 13rem;
    line-height: 13rem;
  }
  .infograph-section .infograph-sldr .title {
    font-size: 6rem;
    line-height: 6rem;
    margin-top: 85px;
  }
  .infograph-section .infograph-sldr .content {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
.meet-our-people {
  background-color: #372461;
  padding: 32px 16px;
}
.meet-our-people .h2-heading74 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 5.6rem !important;
  line-height: 5.4rem !important;
  margin-bottom: 32px;
  color: #ffffff;
  text-align: center;
}
.meet-our-people .people-text {
  font-weight: 400;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 2.6rem;
  margin: 0 0 24px;
}
.meet-our-people .people-name {
  font-weight: 600;
  font-size: 2.6rem;
  color: #ffffff;
  line-height: 3.4rem;
  margin: 0 0 8px;
}
.meet-our-people .people-designation {
  font-weight: 400;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 2.6rem;
  opacity: 0.8;
}
.meet-our-people .gallery {
  width: 100%;
  max-width: 100%;
}
.meet-our-people .gallery-slider {
  width: 100%;
  height: auto;
  margin: 16px 0 0;
  padding: 0;
  overflow-x: hidden;
}
.meet-our-people .gallery-slider .swiper-slide {
  width: auto;
  height: auto;
}
.meet-our-people .gallery-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.meet-our-people .gallery-thumbs {
  width: 100%;
  min-height: 218px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
.meet-our-people .gallery-thumbs .swiper-wrapper {
  align-items: center;
  min-height: 130px;
}
.meet-our-people .gallery-thumbs .swiper-slide {
  text-align: center;
  overflow: hidden;
}
.meet-our-people .gallery-thumbs .swiper-slide-active img {
  border-radius: 50%;
}
.meet-our-people .gallery-thumbs .swiper-slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.meet-our-people .gallery-thumbs .swiper-slide-active img {
  opacity: 1;
  width: 97%;
  height: 100%;
}
.meet-our-people .gallery-thumbs .swiper-pagination {
  position: relative;
  margin: 0;
}
.meet-our-people
  .gallery-thumbs
  .swiper-horizontal
  > .swiper-pagination-bullets,
.meet-our-people
  .gallery-thumbs
  .swiper-pagination-bullets.swiper-pagination-horizontal,
.meet-our-people .gallery-thumbs .swiper-pagination-custom,
.meet-our-people .gallery-thumbs .swiper-pagination-fraction {
  bottom: auto;
}
.meet-our-people .gallery-thumbs .swiper-pagination-bullet {
  opacity: 0.3;
}
.meet-our-people .gallery-thumbs .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1;
}

@media (min-width: 768px) {
  .meet-our-people .h2-heading74 {
    font-size: 6.4rem !important;
    line-height: 6.2rem !important;
    margin-bottom: 40px;
  }
  .meet-our-people .people-text {
    font-size: 2rem;
    line-height: 2.8rem;
    margin: 0 0 40px;
  }
  .meet-our-people .people-name {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 0 0 16px;
  }
  .meet-our-people .people-designation {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .meet-our-people .gallery-slider {
    margin: 60px 0 0;
  }
  .meet-our-people .gallery-thumbs {
    min-height: 278px;
  }
  .meet-our-people .gallery-thumbs .swiper-wrapper {
    min-height: 260px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide img {
    width: 160px;
    height: 160px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide-active img {
    opacity: 1;
    width: 97%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .meet-our-people {
    padding: 100px 50px;
  }
  .meet-our-people .h2-heading74 {
    font-size: 7.4rem !important;
    line-height: 9.4rem !important;
    margin-bottom: 64px;
  }
  .meet-our-people .people-text {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 0 0 48px;
    padding: 10px 0 0 60px;
    position: relative;
  }
  .meet-our-people .people-text::before {
    content: url("/content/dam/infosys-icompaz/en/images/meet-our-people/Icon-material-format-quote.png");
    display: inline-block;
    width: 49px;
    height: 35px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .meet-our-people .people-name {
    margin: 0;
  }
  .meet-our-people .gallery-slider {
    margin: 60px 0 0;
  }
  .meet-our-people .gallery-thumbs {
    min-height: 234px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide img {
    width: 64px;
    height: 64px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide-active img {
    opacity: 1;
    width: 95%;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .meet-our-people {
    padding: 100px 50px;
  }
  .meet-our-people .h2-heading74 {
    font-size: 6.4rem !important;
    line-height: 6.4rem !important;
    margin-bottom: 1rem;
  }
  .meet-our-people .people-text {
    font-size: 2rem;
    line-height: 2.8rem;
    margin: 0 0 3rem;
    padding: 10px 0 0 60px;
    position: relative;
  }
  .meet-our-people .people-text::before {
    content: url("/content/dam/infosys-icompaz/en/images/meet-our-people/Icon-material-format-quote.png");
    display: inline-block;
    width: 49px;
    height: 35px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .meet-our-people .people-name {
    margin: 0;
  }
  .meet-our-people .gallery-slider {
    margin: 2rem 0 0;
  }
  .meet-our-people .gallery-thumbs {
    min-height: 270px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide img {
    width: 160px;
    height: 160px;
  }
  .meet-our-people .gallery-thumbs .swiper-slide-active img {
    opacity: 1;
    width: 98%;
    height: 100%;
  }
}
@media (min-width: 1400px) {
  .meet-our-people .gallery-thumbs {
    min-height: 306px;
  }
}
:root {
  --text-color-ss: #ffffff;
  --light-bg-ss: #eaede4;
  --white: #ffffff;
  --btn-hover-color-ss: #1a3888;
}

/* Success Stories Section */
.ss-section {
  background-color: var(--primary-color);
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.ss-section .h2-heading80 {
  font-size: 3.6rem !important;
  line-height: 3.6rem !important;
  color: #fff;
}

.ss-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.ss-title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
  margin: 0;
}

.ss-explore-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  white-space: nowrap;
  transition: color var(--transition-speed);
}

.ss-explore-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ss-explore-link svg {
  margin-left: 0.5rem;
}

/* Swiper Carousel */
.ss-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ss-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .ss-slide {
    flex-direction: row;
  }
}
/* Case Study Content */
.ss-case-image {
  width: 100%;
  background-color: var(--light-bg-ss);
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .ss-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .ss-case-image {
    width: 32%;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.ss-case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ss-case-content {
  flex-grow: 1;
  padding: 0;
}

@media (min-width: 768px) {
  .ss-case-content {
    padding: 0 0 0 4rem;
  }
}
.ss-case-label {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  color: rgb(255, 255, 255);
}

.ss-case-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
  .ss-case-title {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 4.5rem;
  }
}
.ss-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--text-color-ss);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.6rem;
  transition: color var(--transition-speed);
}

.ss-read-more:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ss-read-more svg {
  margin-left: 0.5rem;
  width: 20px;
  height: 20px;
}

.ss-client-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.ss-navigation {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .ss-navigation {
    margin-top: 7rem;
  }
  .ss-client-image {
    width: 32%;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 1rem;
  }
}
.ss-client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Navigation and Progress */
.ss-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ss-progress-container {
  flex-grow: 1;
  max-width: 150px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.ss-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--text-color-ss);
  width: 25%;
  transition: width var(--transition-speed);
}

.ss-counter {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin: 0 10px;
  color: var(--white);
}

.ss-nav-controls {
  display: flex;
  align-items: center;
}

.ss-nav-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text-color-ss);
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.ss-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.ss-nav-button svg {
  width: 20px;
  height: 20px;
}

.ss-button-disabled {
  opacity: 0.5;
  cursor: default;
}

/* Additional responsive adjustments */
@media (min-width: 992px) {
  .ss-section .h2-heading80 {
    font-size: 6.4rem !important;
    line-height: 6.4rem !important;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .case-study-title {
    font-size: 2.25rem;
  }
  .carousel-progress {
    max-width: 30%;
  }
  .ss-case-label {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .ss-case-title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .ss-read-more {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
/* For screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for accessibility */
.explore-link:focus,
.read-more-btn:focus,
.nav-button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .ss-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .ss-section {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
}
/* Transition */
input[type="checkbox"] {
  height: 0;
  width: 0;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input[type="checkbox"]:focus + label span {
  outline: 2px solid #000;
}

input[type="checkbox"] + label {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  display: flex;
  margin: 12px 0;
  align-items: start;
  color: #333640;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"] + label > ins {
  position: absolute;
  display: block;
  bottom: 0;
  left: 3.4rem;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"] + label > ins > i {
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #2c3d8e;
}

input[type="checkbox"] + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

input[type="checkbox"] + label:hover,
input[type="checkbox"]:focus + label {
  color: #333640;
}

input[type="checkbox"] + label:hover > span,
input[type="checkbox"]:focus + label > span {
  background: #fff;
}

input[type="checkbox"]:checked + label > ins {
  height: 100%;
}

input[type="checkbox"]:checked + label > span {
  border: 12px solid #3f3f3f;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"]:checked + label > span:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 100ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  font-size: 24px;
}

@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #fff;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
p {
  margin-bottom: 2rem;
}

.custom_btn {
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #273e93;
  transition: all 0.3s ease-in-out;
  padding: 2.5rem 3.5rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: left;
  box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
}

.custom_btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  z-index: -1;
}

.custom_btn:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: #ffffff;
}

.custom_btn:hover:before {
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -55px;
  left: 0;
  background: #000000;
  color: white;
  padding: 8px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.slider-row-ltr,
.slider-row-rtl {
  animation: none;
}

@media (min-width: 768px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 400;
  }
  .custom_btn {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .slider-row-ltr {
    animation: moveLeftRight 5s ease-in-out infinite;
  }
  .slider-row-rtl {
    animation: moveRightLeft 5s ease-in-out infinite;
  }
}
@media (min-width: 1200px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .custom_btn {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.btn {
  background-color: transparent;
  border: 0;
  border-radius: 26px;
  padding: 1.4rem 2.8rem 1.4rem 2.8rem;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
  border-color: #000000;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn:focus {
  box-shadow: none;
}

.btn:hover,
.btn:active,
.btn:focus {
  color: #3f3f3f;
  border-color: #000000;
  background-color: #ffffff;
}

.btn:hover:before,
.btn:active:before,
.btn:focus:before {
  width: 100%;
}

.btn-connect {
  background-color: #ffffff;
  border: 0 !important;
  border-radius: 26px !important;
  padding: 1rem 2rem !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #963596 !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-connect:hover,
.btn-connect:focus,
.btn-connect:active {
  background-color: #382261 !important;
  color: #ffffff !important;
}

.btn-slider {
  background-color: #963596;
  border: 0 !important;
  padding: 1.4rem 2.8rem !important;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #ffffff !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.btn-slider:hover,
.btn-slider:active {
  background-color: #ffffff !important;
  color: #963596 !important;
}
.btn-slider:hover,
.btn-slider:focus,
.btn-slider:active {
  background-color: #382261 !important;
  color: #ffffff !important;
}

.btn-custom {
  background-color: #963596;
  border: 0 !important;
  padding: 1rem 2rem !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #ffffff !important;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.rounded {
  border-radius: 2.6rem !important;
  border: none;
  line-height: 1.6rem;
  padding: 1.4rem 2.8rem !important;
  text-transform: none;
  font-weight: 400;
  font-size: 2rem;
  width: auto;
}
.rounded .default-dn-ico {
  margin-right: 7px;
  width: 15px;
  height: 17px;
  position: relative;
  top: 3px;
}
.rounded:hover {
  background-color: #3f3f3f;
  color: white;
  border-color: #3f3f3f;
}
.rounded:hover .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-icompaz/en/images/icon-download-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  transition: all 0.5s ease-in-out;
}
.rounded .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-icompaz/en/images/icon-download-normal.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  transition: all 0.5s ease-in-out;
}
.rounded:focus,
.rounded .focus {
  outline: 5px auto #000;
  outline-offset: -2px;
}

@media (min-width: 768px) {
  .btn-connect,
  .btn-custom {
    padding: 1.4rem 2.8rem !important;
    font-size: 1.8rem;
  }
}
.desktop-board {
  display: none;
}

.mobile-board {
  display: block;
}

.vissible__txt {
  display: inline-block;
}

.ellipsis__hide_content {
  display: none;
}

.ellipsis__dots {
  display: inline-block;
  transition: all 0.3s ease;
}

.borad-section {
  padding: 3rem 0;
  /* #modalBio { padding-bottom: 25px; }*/
}
.borad-section .h2-heading80 {
  color: #3f3f3f;
}
.borad-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3f3f3f;
  margin-bottom: 2rem;
}
.borad-section .gradient-overlay__board {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, white);
  pointer-events: none; /* Allows scrolling through the gradient */
}
.borad-section .board-card {
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.borad-section .board-card:hover .board-image {
  transform: scale(1.1);
}
.borad-section .board-card:hover .ellipsis__dots {
  display: none;
  transition: all 0.3s ease;
}
.borad-section .board-card:hover .ellipsis__hide_content {
  display: inline;
  transition: all 0.3s ease;
}
.borad-section .board-card .board-image-container {
  overflow: hidden;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #777;
}
.borad-section .board-card .board-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.borad-section .board-card .board-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.borad-section .board-card .board-name {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 0.5rem;
  color: #3f3f3f;
}
.borad-section .board-card .board-position {
  font-size: 1.8rem;
  line-height: 2.2rem;
  line-height: 3rem;
  color: rgb(63, 63, 63);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  min-height: 145px;
}
.borad-section .board-card .view-bio-btn {
  background-color: #963596;
  border: none;
  border-radius: 26px;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 24px;
  cursor: pointer;
  line-height: 2rem;
}
.borad-section .board-card .view-bio-btn:hover,
.borad-section .board-card .view-bio-btn:focus,
.borad-section .board-card .view-bio-btn:active {
  background-color: #382261 !important;
  color: white;
}
.borad-section .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
  padding: 0;
  display: flex;
  max-height: 900px; /* Set maximum height for very large screens */
}
.borad-section .modal-content {
  border: none;
  border-radius: 0;
  overflow-x: hidden;
  box-shadow: none;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
}
.borad-section .modal-image-container {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  background-color: #777;
  overflow: hidden;
}
.borad-section .modal-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.borad-section .modal-info-container {
  width: 100%;
  position: relative;
  background-color: white;
  padding: 0 20px;
  /*margin-top: -20px;*/
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Important for flexbox scroll to work */
  /*max-height: calc(60vh - 20px);*/
}
.borad-section .modal-header {
  background-color: white;
  padding: 25px 30px 15px 0;
  border: none;
  flex-shrink: 0;
}
.borad-section .modal-title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.borad-section .modal-subtitle {
  font-size: 1.8rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 2.4rem;
  margin-bottom: 0;
}
.borad-section .modal-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0;
  flex-shrink: 0;
}
.borad-section .modal-body {
  background-color: white;
  padding: 20px 0 30px;
  outline: none;
}
.borad-section .modal-body p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #333;
}
.borad-section .modal-body p:last-child {
  margin-bottom: 0;
}
.borad-section .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1050;
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.borad-section .board-prev,
.borad-section .board-next {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: unset;
  transition: all 0.3s ease;
  margin-top: 0;
}
.borad-section .board-prev::after,
.borad-section .board-next::after {
  display: none;
}
.borad-section .board-prev::before,
.borad-section .board-next::before {
  content: "";
  position: absolute;
  color: #7e7e7e;
  font-size: 16px;
}
.borad-section .board-prev.swiper-button-disabled,
.borad-section .board-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.borad-section .board-prev {
  background-image: url("/content/dam/infosys-icompaz/en/images/prev-arrow.svg");
}
.borad-section .board-prev::before {
  left: 0;
  margin-right: 10px;
}
.borad-section .board-next {
  background-image: url("/content/dam/infosys-icompaz/en/images/next-arrow.svg");
}
.borad-section .board-next::before {
  right: 0;
  margin-left: 10px;
}

@media (min-width: 768px) {
  .borad-section .modal-info-container {
    padding: 0 !important;
  }
  .borad-section .modal-header {
    padding: 25px 30px 20px 0;
  }
  .borad-section .modal-dialog {
    max-width: 1000px !important;
  }
  .borad-section .modal-content {
    display: block;
    max-height: auto !important;
  }
  .borad-section .modal-body {
    padding: 20px 30px 30px 0;
  }
  .custom-scrollbar {
    max-height: 360px; /* Set maximum height */
    overflow-y: auto;
    overflow-x: hidden;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Custom scrollbar for webkit browsers */
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
  }
}
@media (min-width: 992px) {
  .borad-section .modal-body {
    background-color: white;
    padding: 20px 30px 30px 0;
    overflow-y: auto;
    flex-grow: 1;
    scroll-behavior: smooth;
    outline: none;
  }
  .borad-section .modal-content {
    overflow: hidden;
  }
  .borad-section .board-card {
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .desktop-board {
    display: block;
  }
  .mobile-board {
    display: none;
  }
  .borad-section {
    padding-top: 80px;
    padding-bottom: 4rem;
  }
  .borad-section .h2-heading80 {
    color: #3f3f3f;
    margin-bottom: 30px;
  }
  .borad-section .board-image-container {
    margin-bottom: 2rem;
  }
  .borad-section .view-bio-btn {
    font-size: 1.7rem;
    padding: 10px 24px;
    cursor: pointer;
  }
  .borad-section .board-name {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
  .borad-section .board-position {
    line-height: 2.8rem;
    margin-bottom: 3.5rem;
  }
  .borad-section .modal-title {
    font-size: 3rem;
    line-height: 3.7rem;
  }
  .borad-section .modal-subtitle {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 0;
  }
  .borad-section .modal-body p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .borad-section .close-btn {
    width: auto;
    top: 15px;
    right: 15px;
  }
}
:root {
  --purple-bg: #372461;
  --white: #ffffff;
  --primary-color: #36275a;
  --text-color: rgba(45, 40, 40, 0.9);
  --button-color: #ff5722;
  --light-bg: #372461;
  --btn-hover-color: #1a3888;
  --card-padding: 2rem;
  --card-border-radius: 0;
  --card-gutter: 25px;
  --transition-speed: 0.3s;
}

.our-solutions {
  padding: 30px 0;
  position: relative;
}
.our-solutions .h2-heading80 {
  font-size: 6rem;
  line-height: 6.4rem;
}

.sss-counter {
  display: block;
}

.news-insights {
  background-color: var(--light-bg);
}

.swiper-container {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
}

.service-card {
  position: relative;
  border-radius: var(--card-border-radius);
  height: 100%;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.service-card .swiper-wrapper {
  height: auto !important;
}
.service-card .card-img-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  background-color: #f8f9fa;
}
.service-card .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}
.service-card .arrow-icon {
  position: absolute;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity var(--transition-speed) ease;
  z-index: 2;
}
.service-card .arrow-icon img {
  height: 50px;
}
.service-card .card-content {
  background: rgba(55, 36, 97, 0.04);
  color: rgb(45, 40, 40);
  padding: 30px 22px 22px 22px;
  flex-grow: 1;
  min-height: auto;
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition-speed) ease,
    color var(--transition-speed) ease;
}
.service-card .card-title {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card .card-description {
  font-size: 2rem;
  line-height: 2.8rem;
}

.swiper-controls {
  width: 160px;
  display: flex;
  font-size: 1.8rem;
  justify-content: space-around;
  align-items: center;
  margin: 2rem auto 0;
}

.custom-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: 200px;
  margin: 0 auto;
  z-index: 10;
  display: flex;
}

.slide-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  min-width: 80px;
}

.swiper-arrow-prev {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all var(--transition-speed) ease;
  margin-top: 0;
  background-image: url("/content/dam/infosys-icompaz/en/images/prev-arrow.svg");
}
.swiper-arrow-prev::after {
  display: none;
}
.swiper-arrow-prev::before {
  content: "";
  margin-right: 10px;
  position: absolute;
  left: 0;
  color: #7e7e7e;
  font-size: 16px;
}

.swiper-arrow-next {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  position: unset;
  transition: all var(--transition-speed) ease;
  margin-top: 0;
  background-image: url("/content/dam/infosys-icompaz/en/images/next-arrow.svg");
}
.swiper-arrow-next::after {
  display: none;
}
.swiper-arrow-next::before {
  content: "";
  margin-left: 10px;
  position: absolute;
  right: 0;
  color: #7e7e7e;
  font-size: 16px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: none !important;
}

@media (min-width: 768px) {
  .swiper-controls {
    width: 250px;
  }
  .service-card .card-title {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
  .service-card .card-img-container {
    height: 315px;
  }
  .service-card .card-content {
    min-height: 280px;
  }
}
@media (min-width: 992px) {
  .our-solutions {
    padding: 11rem 0;
  }
  .our-solutions .h2-heading80 {
    font-size: 6.4rem !important;
    line-height: 6rem !important;
  }
  .service-card .card-content {
    min-height: 300px;
  }
  .service-card:hover .card-img,
  .service-card:focus-within .card-img {
    transform: scale(1.05);
  }
  .service-card:hover .arrow-icon,
  .service-card:focus-within .arrow-icon {
    opacity: 1;
  }
  .service-card .arrow-icon {
    opacity: 0;
  }
  .service-card .arrow-icon img {
    height: 70px;
  }
  .first-card:hover .card-content,
  .first-card:focus-within .card-content,
  .second-card:hover .card-content,
  .second-card:focus-within .card-content,
  .third-card:hover .card-content,
  .third-card:focus-within .card-content {
    background-color: var(--purple-bg);
    color: var(--white);
    min-height: 300px;
  }
  .first-card:hover .card-description,
  .first-card:focus-within .card-description,
  .second-card:hover .card-description,
  .second-card:focus-within .card-description,
  .third-card:hover .card-description,
  .third-card:focus-within .card-description {
    color: var(--white);
  }
}
@media (min-width: 1400px) {
  .service-card .card-title {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}
@media screen and (min-width: 1401px) {
  .sss-counter {
    display: none;
  }
}
@media (forced-colors: active) {
  .service-card {
    border: 2px solid currentColor;
  }
  .arrow-icon {
    border: 1px solid currentColor;
  }
}
.partners-logo {
  background-color: #ffffff;
  padding: 3rem 1.5rem;
}
.partners-logo img {
  width: 100%;
}

@media (min-width: 768px) {
  .partners-logo {
    padding: 9rem 0;
  }
}
:root {
  --slide-distance: 10px;
  --transition-duration: 0.3s;
  --transition-timing: ease;
}

.our-solutions-banner {
  background: url("/content/dam/infosys-icompaz/en/images/bg-solution.jpg")
    no-repeat center center;
  background-size: cover;
}

.io-banner {
  background: url("/content/dam/infosys-icompaz/en/images/bg-iocs.jpg")
    no-repeat center center;
  background-size: cover;
}

.tech-adoption-banner {
  background: url("/content/dam/infosys-icompaz/en/images/bg-tech-adoption.jpg")
    no-repeat center center;
  background-size: cover;
}

.stories-slider {
  background-color: rgb(32, 64, 155);
  margin-bottom: 3rem;
}

.our-solutions-details,
.benefits-section,
.offerings-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.benefits-our-solution .metro-grid .metro-item:nth-child(2) h3 {
  color: #000000 !important;
}

.benefits-section .metro-grid {
  grid-auto-rows: 30rem !important;
}
.benefits-section .metro-grid .metro-item {
  max-height: 30rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
}
.benefits-section .metro-grid .metro-item .metro-content h3 {
  color: #ffffff !important;
}

.benefits-our-solution .metro-grid,
.tech-adoption .metro-grid {
  grid-template-columns: repeat(1, 1fr);
}
.benefits-our-solution .metro-grid .metro-item:last-child,
.tech-adoption .metro-grid .metro-item:last-child {
  grid-column: span 1 !important;
}

.intelligent-operations .metro-grid {
  display: grid;
  grid-auto-rows: auto;
  gap: 1rem;
}
.intelligent-operations .metro-grid .metro-item:nth-child(1),
.intelligent-operations .metro-grid .metro-item:nth-child(2),
.intelligent-operations .metro-grid .metro-item:nth-child(3) {
  grid-column: span 1 !important;
}
.intelligent-operations .metro-grid .metro-item:nth-child(4),
.intelligent-operations .metro-grid .metro-item:nth-child(5) {
  grid-template-columns: repeat(1, 1fr) !important;
}

/* accordion */
.custom-accordion {
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
}

.accordion-item {
  border: none;
}

.accordion-button {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.8rem;
  min-height: 12rem;
  color: rgb(45, 40, 40);
  padding-left: 30px;
  border-bottom: 2px solid rgba(51, 55, 65, 0.2);
}

.accordion-button:not(.collapsed) {
  background-color: rgb(150, 53, 150);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button:hover {
  background-color: rgb(150, 53, 150);
  color: #fff;
  border-bottom: 2px solid rgb(246, 245, 248);
}

.accordion-button .text-content {
  display: inline-block;
  transition: transform var(--transition-duration) var(--transition-timing);
  padding-right: 2.5rem;
}

.accordion-button:hover .text-content {
  transform: translateX(var(--slide-distance));
}

.accordion-button::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/plus-black.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/minus-white.svg");
}

.accordion-button:hover::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/plus-white.svg");
}

.accordion-button:hover:not(.collapsed)::after {
  background-image: url("/content/dam/infosys-icompaz/en/images/minus-white.svg");
}

.accordion {
  --bs-accordion-border-width: none;
}

.accordion-button {
  padding-right: 30px;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 2.5rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-body {
  padding: 30px;
  background-color: rgb(246, 245, 248);
  border-bottom: 2px solid rgba(51, 55, 65, 0.2);
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.image-col {
  flex: 1;
}

.text-col {
  flex: 1.5;
}

.image-col img {
  width: 100%;
  border-radius: 4px;
}

.text-col p,
.our-solutions-details p {
  color: #333;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 20px;
}

ul.solution-list {
  color: #333;
  margin-left: 2rem;
}
ul.solution-list li {
  font-size: 2rem;
  line-height: 2.8rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.clife .metro-grid .metro-item,
.benefits-our-solution .metro-grid .metro-item,
.intelligent-operations .metro-grid .metro-item {
  cursor: unset;
  transition: none;
}
.clife .metro-grid .metro-item .metro-content,
.benefits-our-solution .metro-grid .metro-item .metro-content,
.intelligent-operations .metro-grid .metro-item .metro-content {
  z-index: 2;
}
.clife .metro-grid .metro-item:nth-child(n) .metro-content,
.benefits-our-solution .metro-grid .metro-item:nth-child(n) .metro-content,
.intelligent-operations .metro-grid .metro-item:nth-child(n) .metro-content {
  background: none !important;
  background-color: transparent !important;
}
.clife .metro-grid:hover .metro-item:first-child:hover .metro-content,
.benefits-our-solution
  .metro-grid:hover
  .metro-item:first-child:hover
  .metro-content,
.intelligent-operations
  .metro-grid:hover
  .metro-item:first-child:hover
  .metro-content {
  background: none !important;
}
.opt_in_comm_label_focus {
  outline: 2px solid;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  .tech-adoption-banner .metro-tech-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4.8rem 3.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  .tech-adoption-banner .metro-tech-content h3 {
    color: #ffffff !important;
  }
  .image-col {
    margin-bottom: 20px;
  }
  .clife .metro-grid:hover .metro-item:nth-child(n) .metro-content,
  .benefits-our-solution
    .metro-grid:hover
    .metro-item:nth-child(n)
    .metro-content,
  .intelligent-operations
    .metro-grid:hover
    .metro-item:nth-child(n)
    .metro-content {
    background: none !important;
    background-color: transparent !important;
  }
  .intelligent-operations
    .metro-grid
    .metro-item:nth-child(2)
    .metro-content
    h3 {
    color: #ffffff !important;
  }
}
@media (min-width: 768px) {
  .stories-slider {
    margin-bottom: 5rem;
  }
  .accordion-body {
    padding-bottom: 5rem;
  }
  .benefits-our-solution .metro-grid,
  .tech-adoption .metro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-solutions-details,
  .benefits-section,
  .offerings-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .text-col p,
  .our-solutions-details p {
    color: #333;
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 992px) {
  .stories-slider {
    background-color: rgb(32, 64, 155);
    margin-bottom: 11rem;
  }
  .intelligent-operations .metro-grid {
    display: grid;
    grid-auto-rows: 30rem !important;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .our-solutions-details,
  .benefits-section,
  .offerings-section {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  .benefits-our-solution .metro-grid,
  .tech-adoption .metro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-our-solution .metro-grid .metro-item:last-child,
  .tech-adoption .metro-grid .metro-item:last-child {
    grid-column: span 1 !important;
  }
  .intelligent-operations .metro-grid {
    grid-auto-rows: 30rem !important;
    grid-template-columns: repeat(3, 1fr);
  }
  .intelligent-operations .metro-grid:nth-child(4),
  .intelligent-operations .metro-grid:nth-child(5) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .accordion-button {
    font-size: 2.8rem;
    line-height: 3.6rem;
    color: rgb(45, 40, 40);
    padding-left: 3rem;
    border-bottom: 2px solid rgba(51, 55, 65, 0.2);
  }
}
@media (min-width: 1400px) {
  .accordion-button {
    font-size: 2.8rem;
    line-height: 3.6rem;
    color: rgb(45, 40, 40);
    padding-left: 50px;
    border-bottom: 2px solid rgba(51, 55, 65, 0.2);
  }
}
.owl-theme {
  padding: 0;
  padding-bottom: 3rem;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.owl-carousel .owl-nav {
  margin: 0;
}

.owl-theme .owl-nav .disabled,
button.disabled {
  opacity: 0.6;
  cursor: default;
}

@media (min-width: 576px) {
  .owl-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .owl-theme .theme-content .overlap-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
  }
  .owl-nav {
    display: none;
  }
}
@media (min-width: 992px) {
  .owl-carousel .owl-stage {
    min-width: 10200px;
  }
  .owl-theme .theme-outer {
    position: relative;
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .item {
    width: 400px !important;
    position: relative;
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .item:hover {
    width: 950px !important;
    transition: all 0.6s ease-in-out;
    justify-self: center;
  }
  .owl-theme .item:hover .theme-img {
    width: 400px;
    height: 100%;
  }
  .owl-theme .item:hover .overlap-text {
    opacity: 0;
  }
  .owl-theme .item:hover .theme-content {
    transition: all 0.6s ease-in-out;
    width: 300px !important;
  }
  .owl-theme .white-square {
    text-transform: none;
    min-width: 220px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .owl-carousel .owl-stage {
    min-width: 10200px;
  }
  .owl-theme .theme-outer {
    position: relative;
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .theme-content {
    min-height: 600px;
    display: inline-block;
    background-color: #ffffff;
    overflow: hidden;
    width: 470px;
    height: 600px;
    position: relative;
    z-index: 1;
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .theme-content .theme-img {
    width: 470px;
    height: 600px;
  }
  .owl-theme .theme-content .overlap-text {
    position: absolute;
    top: 35px;
    left: 40px;
    display: block;
    opacity: 1;
    z-index: 1;
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .theme-content .overlap-text .company-name {
    color: #2c70a6;
    margin-bottom: 10px;
  }
  .owl-theme .theme-content .overlap-text .company-caption {
    display: block;
    color: #2c70a6;
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    max-width: 450px;
    border: 1px solid transparent;
  }
  .owl-theme .item {
    width: 470px !important;
    position: relative; /* Enable relative positioning for slide movement */
    transition: all 0.6s ease-in-out;
  }
  .owl-theme .item:hover {
    width: 1100px !important;
    transition: all 0.6s ease-in-out;
    justify-self: center;
  }
  .owl-theme .item:hover .theme-img {
    width: 550px;
    height: 100%;
  }
  .owl-theme .item:hover .overlap-text {
    opacity: 0;
  }
  .owl-theme .item:hover .theme-content {
    transition: all 0.6s ease-in-out;
    width: 550px !important;
  }
  .owl-theme .hide-mobile {
    display: block !important;
  }
}
.timeline-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
}
.timeline-section h2 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  color: #2d2828;
}
.timeline-section .swiper-pagination-progressbar-custom {
  width: 15rem;
  height: 1.5px;
  color: #e6e4ff;
  position: relative;
  margin-right: 10px;
}
.timeline-section
  .swiper-pagination-progressbar-custom
  .swiper-pagination-progressbar-fill {
  background: #191d32;
  height: 3px;
  border-radius: 50px;
  top: -1px;
}
.timeline-section .swiper-controls {
  margin: 0;
  width: 115px;
}
.timeline-section .timeline-sldr {
  padding: 0px;
  position: relative;
  cursor: url("/content/dam/infosys-icompaz/en/images/cursor.svg"), auto;
}
.timeline-section .timeline-sldr .dotted_line {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #000000,
    #000000 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 0;
}
.timeline-section .timeline-sldr .swiper-slide {
  width: 300px;
  height: auto;
}
.timeline-section .timeline-sldr .swiper-slide:first-child {
  position: relative;
  padding-left: 80px;
}
.timeline-section .timeline-sldr .swiper-slide:first-child::after {
  content: " ";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 200px;
  width: 2px;
  background: #000000;
  z-index: 0;
  transform: translateY(-50%);
}
.timeline-section .timeline-sldr .swiper-slide:last-child {
  position: relative;
  padding-right: 50px;
}
.timeline-section .timeline-sldr .swiper-slide:last-child::after {
  content: " ";
  position: absolute;
  width: 100%;
  top: 50%;
  right: 0;
  height: 200px;
  width: 2px;
  background: #000000;
  z-index: 0;
  transform: translateY(-50%);
}
.timeline-section .timeline-sldr .swiper-slide .img_section {
  height: 200px;
  width: 200px;
  position: relative;
}
.timeline-section .timeline-sldr .swiper-slide .img_section::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 100px;
  border-left: #000000 solid 1px;
  width: 100%;
  z-index: -1;
}
.timeline-section .timeline-sldr .swiper-slide .img_section::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("/content/dam/infosys-icompaz/en/images/timeline-dot.png")
    no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 45%;
  z-index: 10;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.bottom {
  margin-bottom: 100px;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.bottom::after {
  bottom: -90px;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.bottom::before {
  bottom: -100px;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.top {
  margin-top: 100px;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.top::after {
  top: -90px;
}
.timeline-section .timeline-sldr .swiper-slide .img_section.top::before {
  top: -100px;
}
.timeline-section .timeline-sldr .swiper-slide .content-section {
  color: #2d2828;
  min-height: 280px;
  width: 300px;
}
.timeline-section .timeline-sldr .swiper-slide .content-section .content {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.timeline-section .timeline-sldr .swiper-slide .content-section .year {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 5.1rem;
  line-height: 5.5rem;
  font-weight: 500;
  margin-bottom: 32px;
}

@media (min-width: 576px) {
  .right-fluid {
    margin-left: calc((100% - 540px) / 2);
    max-width: none;
    width: auto !important;
  }
}
@media (min-width: 768px) {
  .timeline-section {
    padding: 110px 0;
  }
  .right-fluid {
    margin-left: calc((100% - 720px) / 2);
    max-width: none;
    width: auto !important;
  }
  .timeline-section h2 {
    font-size: 8.1rem;
    line-height: 8rem;
  }
  .timeline-section .timeline-sldr .swiper-slide {
    width: 400px;
  }
  .timeline-section .timeline-sldr .swiper-slide:first-child {
    padding-left: 160px;
  }
  .timeline-section .timeline-sldr .swiper-slide:last-child {
    padding-right: 160px;
  }
  .timeline-section .timeline-sldr .swiper-slide .content-section {
    width: 350px;
  }
  .timeline-section .timeline-sldr .swiper-slide .content-section .year {
    font-size: 6.1rem;
    line-height: 6.5rem;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section {
    width: 280px;
    height: 280px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.bottom {
    margin-bottom: 200px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.bottom::before {
    bottom: -110px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.top {
    margin-top: 200px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.top::before {
    top: -110px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section::before {
    left: 46.5%;
  }
}
@media (min-width: 992px) {
  .right-fluid {
    margin-left: calc((100% - 960px) / 2);
    max-width: none;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .right-fluid {
    margin-left: calc((100% - 1140px) / 2);
    max-width: none;
    width: auto !important;
  }
  .timeline-section h2 {
    font-size: 6.4rem;
    line-height: 6.4rem;
  }
  .timeline-section .timeline-sldr .swiper-slide .content-section .year {
    font-size: 6rem;
    line-height: 6rem;
  }
  .timeline-section .timeline-sldr .swiper-slide .content-section .content {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section:after {
    height: 125px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.bottom::after {
    bottom: -115px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.bottom::before {
    bottom: -121px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.top::after {
    top: -90px;
  }
  .timeline-section .timeline-sldr .swiper-slide .img_section.top::before {
    top: -103px;
  }
}
@media (min-width: 1400px) {
  .right-fluid {
    margin-left: calc((100% - 1320px) / 2);
    max-width: none;
    width: auto !important;
  }
}
.about-compaz {
  width: 100%;
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about-compaz img {
  padding-top: 0;
  padding-right: 20px;
}
.about-compaz .compaz-card {
  padding-top: 0;
  padding-bottom: 0;
}
.about-compaz .letters-block-outer {
  height: auto;
  position: relative;
}

.compaz-card {
  padding: 3rem 0 4rem 0;
}

.compaz-content {
  line-height: 2.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.h2-heading80 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.6rem !important;
  line-height: 3.6rem !important;
  margin-bottom: 2rem;
}
.h2-heading80 span {
  font-weight: 500;
}
.h2-heading80 br {
  display: none;
}

.rounded {
  font-size: 1.6rem;
  padding: 5px 20px;
}

@media (min-width: 768px) {
  .about-compaz {
    padding-top: 5rem;
  }
  .compaz-card {
    padding-top: 9rem;
  }
}
@media (min-width: 992px) {
  .compaz-content {
    line-height: 3rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .h2-heading80 {
    font-size: 6.4rem !important;
    line-height: 6.4rem !important;
    margin-bottom: 3rem;
    color: #3f3f3f;
  }
  .h2-heading80 br {
    display: block;
  }
  .compaz-content {
    line-height: 3rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .about-compaz {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }
  .rounded {
    font-size: 2rem;
  }
  .compaz-card {
    padding-top: 23%;
  }
  .compaz-card.right-img {
    padding-left: 70px;
  }
} /*# sourceMappingURL=style.css.map */

.pagecompaz .xf-content-height {
  min-height: 0 !important;
  margin: 0 !important;
}
