@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;
}
/*
@font-face {
  font-family: "myriad-pro";
  src: url(" ../fonts/MyriadPro-Regular.eot");
  src: url("../fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"), url(" ../fonts/MyriadPro-Regular.woff2") format("woff2"), url("../fonts/MyriadPro-Regular.woff") format("woff"), url("../fonts/MyriadPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "tungstenw05-medium";
  src: url("../fonts/tungstenw05-medium.woff2") format("woff2"), url("../fonts/tungstenw05-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*/
footer {
  background: #2E333A;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  padding: 30px 0;
}
footer a {
  color: #FFF;
  text-decoration: none;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  padding-bottom: 5px;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -ms-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
footer a:hover, footer a:focus {
  color: #FFF;
  text-decoration: none;
  padding-bottom: 6px;
  background: linear-gradient(90deg, #fff, #fff);
  background-size: 100% 1px;
  background-position-x: 0%;
  background-position-y: calc(100% - 8px);
  background-repeat: no-repeat;
  animation-name: underlineHover;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
}

@keyframes underlineHover {
  0% {
    background-position-x: 100%;
    background-size: 100% 1px;
  }
  50% {
    background-position-x: 100%;
    background-size: 0% 1px;
  }
  51% {
    background-position-x: 0%;
    background-size: 0% 1px;
  }
  100% {
    background-position-x: 0%;
    background-size: 100% 1px;
  }
}
#header {
  background-color: #000;
}
#header nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 0px 15px 0px;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}
#header nav.is-sticky {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
}
#header .nav-brand {
  max-width: 210px;
}
#header .nav-brand img {
  width: 100%;
  height: auto;
}
#header .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#header .nav-menu .nav-list {
  display: flex;
  list-style: none;
}
#header .nav-menu .nav-item {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 30px;
}
#header .nav-menu .nav-item a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 3px;
  position: relative;
}
#header .nav-menu .nav-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: transform 0.25s ease-out;
}
#header .nav-menu .nav-item a:hover::after, #header .nav-menu .nav-item a:focus::after, #header .nav-menu .nav-item a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#header .nav-menu .nav-item:last-child {
  margin-right: 0;
}
#header .nav-menu .nav-item .region-dropdown {
  position: relative;
  display: inline-block;
}
#header .nav-menu .nav-item .region-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  transition: all 0.3s ease;
  width: 180px;
  height: 56px;
  justify-content: space-between;
  flex-shrink: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#header .nav-menu .nav-item .region-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
}
#header .nav-menu .nav-item .region-label {
  font-weight: 400;
  opacity: 0.8;
  margin-right: 4px;
}
#header .nav-menu .nav-item .flag-icon {
  width: 32px;
  height: 24px;
}
#header .nav-menu .nav-item .dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
#header .nav-menu .nav-item .region-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
#header .nav-menu .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  width: 100%;
}
#header .nav-menu .nav-item .region-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
#header .nav-menu .nav-item .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
#header .nav-menu .nav-item .dropdown-item span {
  font-size: 18px;
  color: #000;
}
#header .nav-menu .nav-item .dropdown-item:hover {
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
}
#header .nav-menu .nav-item .dropdown-item.active {
  background: #e3f2fd;
  color: #1976d2;
}
#header .btn--search {
  background: none;
  box-shadow: none;
  border: none;
}
#header .nav-toggle {
  display: flex;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  padding: 0.6rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
  width: 48px;
  justify-content: flex-end;
  align-items: center;
}
#header .nav-toggle .hamburger {
  width: 18px;
  height: 18px;
  position: relative;
  transform: rotateY(-180deg);
  right: 5px;
}
#header .nav-toggle .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #09321D;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}
#header .nav-toggle .hamburger span:first-child {
  top: 0;
}
#header .nav-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  left: 0;
}
#header .nav-toggle .hamburger span:last-child {
  bottom: 0;
  transform: translateY(50%);
}

.fixed #header:before {
  bottom: 0;
}

@media (min-width: 768px) {
  #header .nav-brand {
    max-width: 250px;
  }
}
@media (min-width: 992px) {
  #header .nav-toggle {
    display: none;
  }
  #header .nav-brand {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  #header .nav-menu {
    position: fixed;
    top: 93px;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    background-image: url(/content/dam/infosys-org/en/csr-2026/pattern-bg.png);
    background-repeat: repeat;
    -webkit-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center center;
    width: 100%;
    text-align: center;
    min-height: calc(100vh - 73px);
    max-height: calc(100vh - 73px);
    padding: 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 11;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #header .nav-menu::-webkit-scrollbar {
    width: 6px;
  }
  #header .nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  #header .nav-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }
  #header .nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  #header .nav-active .nav-menu {
    right: 0;
  }
  #header .nav-active .nav-menu .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
  #header .nav-active .nav-menu .nav-item {
    width: 100%;
    color: #3f3f3f;
    font-weight: 900;
    font-size: 23px;
    text-decoration: none;
    margin-right: 0;
  }
  #header .nav-active .nav-menu .nav-item a {
    color: #3f3f3f;
  }
  #header .nav-active .hamburger {
    right: 8px;
  }
  #header .nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
  }
  #header .nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  #header .nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
  }
}
*,
*::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 !important;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #000;
}

/* * Basic styles  */
a {
  text-decoration: none;
  color: #333333;
}

p a {
  text-decoration: underline;
}

.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-bottom: 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;
}

.pa-r-100 {
  padding-right: 12rem;
}

.position-initial {
  position: initial;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.no-border-bottom {
  border-bottom: 0px !important;
}

.h2-heading {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 5.2rem;
  color: #000000;
  margin-bottom: 30px;
}

/* Go to Top Button Styles */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 9;
  border: 0;
  background-color: transparent;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  transform: translateY(-5px);
}

.go-to-top:active {
  transform: translateY(-2px);
}

/* Arrow icon */
.go-to-top::before {
  content: "";
  width: 0;
  height: 0;
  margin-bottom: 2px;
}

.go-to-top:hover::after {
  opacity: 1;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}
.skip-link:focus {
  top: 6px;
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

#skipTarget {
  scroll-margin-top: 95px;
}

#mainContent {
  scroll-margin-top: 95px;
}

#mainContent:focus {
  outline: none;
}

.hero-section {
  background-color: #000;
}
.hero-section .banner-image {
  height: 100vh;
  min-height: 520px;
  max-height: 700px;
}
.hero-section .banner-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-section .banner-content {
  position: absolute;
  top: 45%;
  left: 51%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  text-align: left;
  width: 90%;
  color: #fff;
  z-index: 2;
}
.hero-section .banner-content .heading-banner, .hero-section .banner-content h1 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 6.2rem;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.search-text {
  margin-top: -80px;
}
.search-text .content-section {
  padding: 44px;
  line-height: 3.2rem;
  text-align: center;
  font-size: 2.2rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.search-text .content-section input {
  border: none;
  outline: none;
  font-size: 3.6rem;
  width: 100%;
  font-weight: 300;
}

.regions-section {
  margin-top: 80px;
  margin-bottom: 80px;
}
.regions-section .content-section {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 40px 32px;
  z-index: 1;
}
.regions-section .content-section h2 {
  color: #EBEBEB;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 5.6rem;
  line-height: 5.6rem;
  text-align: left;
}
.regions-section .content-section p {
  color: #fff;
  font-size: 24px;
}
.regions-section .region-img {
  height: 300px;
  transition: all 0.6s ease;
}
.regions-section .card-region {
  overflow: hidden;
  display: inline-block;
  position: relative;
  background-color: #000;
}
.regions-section .card-region::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.regions-section .card-region:hover .region-img {
  filter: brightness(70%);
  transform: scale(1.1);
  transition: all 0.6s ease;
}

.volunteer-sec {
  background: #F4F4F4;
  padding: 80px 0px;
  margin-bottom: 120px;
}
.volunteer-sec .content-section h2 {
  position: relative;
}
.volunteer-sec .content-section h2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: #00B68D;
  bottom: -15px;
  left: 0;
}
.volunteer-sec .content-section p {
  color: rgba(35, 31, 32, 0.7);
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.volunteer-sec .content-section .Education-category,
.volunteer-sec .content-section .Environment-category,
.volunteer-sec .content-section .Health-category,
.volunteer-sec .content-section .Relief-category {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 4.8rem;
  line-height: 4rem;
  color: #000000;
  margin-right: 40px;
  position: relative;
  padding-left: 8px;
  cursor: pointer;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.volunteer-sec .content-section .Education-category::before,
.volunteer-sec .content-section .Environment-category::before,
.volunteer-sec .content-section .Health-category::before,
.volunteer-sec .content-section .Relief-category::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  bottom: 0px;
  left: 0;
  top: 0;
  transition: width 0.3s ease;
}
.volunteer-sec .content-section .Education-category::before {
  background: #EB9500;
}
.volunteer-sec .content-section .Education-category:hover {
  color: #EB9500;
  padding-left: 12px;
}
.volunteer-sec .content-section .Education-category:hover::before {
  width: 6px;
}
.volunteer-sec .content-section .Environment-category::before {
  background: #0074B1;
}
.volunteer-sec .content-section .Environment-category:hover {
  color: #0074B1;
  padding-left: 12px;
}
.volunteer-sec .content-section .Environment-category:hover::before {
  width: 6px;
}
.volunteer-sec .content-section .Health-category::before {
  background: #00B68D;
}
.volunteer-sec .content-section .Health-category:hover {
  color: #00B68D;
  padding-left: 12px;
}
.volunteer-sec .content-section .Health-category:hover::before {
  width: 6px;
}
.volunteer-sec .content-section .Relief-category::before {
  background: #FF6145;
}
.volunteer-sec .content-section .Relief-category:hover {
  color: #FF6145;
  padding-left: 12px;
}
.volunteer-sec .content-section .Relief-category:hover::before {
  width: 6px;
}

.ceo-section {
  margin-bottom: 120px;
}
.ceo-section .profile-image {
  height: auto;
  width: auto;
}
.ceo-section .content-section h2 {
  margin-bottom: 50px;
}
.ceo-section .content-section .tag {
  margin-bottom: 25px;
}
.ceo-section .content-section p {
  color: #231F20;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.ceo-section .content-section .desig-title {
  position: relative;
  padding-left: 70px;
}
.ceo-section .content-section .desig-title::before {
  content: "";
  position: absolute;
  max-width: 60px;
  width: 100%;
  height: 2px;
  background: #333;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.stories-sec {
  margin-bottom: 120px;
}
.stories-sec h2 {
  position: relative;
  margin-bottom: 80px;
  font-size: 55px;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
}
.stories-sec .storie {
  border-bottom: 1px solid rgba(35, 31, 32, 0.3);
  margin-bottom: 40px;
}
.stories-sec .storie h1 {
  font-size: 64px;
  color: #231F20;
  margin-bottom: 40px;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
}
.stories-sec .storie h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 30px;
}
.stories-sec .storie p {
  color: rgba(35, 31, 32, 0.7);
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 30px;
}
.stories-sec .storie p a {
  color: #007CC2;
  text-decoration: underline;
}
.stories-sec .storie .storie-date {
  color: #808080;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.stories-sec .storie .link-section a {
  color: #007CC2;
}

.custom-btn {
  color: #231F20;
  border: 1px solid #231F20;
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
}
.custom-btn:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #ffffff;
}
.custom-btn:hover::before {
  width: 100%;
}
.custom-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  z-index: -1;
}
.custom-btn.white-bg {
  color: #fff;
  border: 1px solid #fff;
}
.custom-btn.white-bg:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
}
.custom-btn.white-bg:hover::before {
  width: 100%;
  background-color: #fff;
}
.custom-btn.white-bg::before {
  background-color: #fff;
}

.banner-pagination {
  position: absolute;
  bottom: 0px !important;
  right: 40%;
  left: auto !important;
  max-width: 200px;
  z-index: 9;
  text-align: right;
}
.banner-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  margin-right: 15px !important;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 50%;
}
.banner-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #fff;
  border-radius: 50%;
  transition: height 0.3s ease;
}
.banner-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5);
}
.banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.1);
}
.banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  height: 100%;
}

.two-item-pagination,
.two-item-pagination1,
.two-item-pagination2,
.two-item-pagination3,
.two-item-pagination4,
.two-item-pagination5 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.two-item-pagination .swiper-pagination-bullet,
.two-item-pagination1 .swiper-pagination-bullet,
.two-item-pagination2 .swiper-pagination-bullet,
.two-item-pagination3 .swiper-pagination-bullet,
.two-item-pagination4 .swiper-pagination-bullet,
.two-item-pagination5 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  margin-right: 15px !important;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 50%;
}
.two-item-pagination .swiper-pagination-bullet::after,
.two-item-pagination1 .swiper-pagination-bullet::after,
.two-item-pagination2 .swiper-pagination-bullet::after,
.two-item-pagination3 .swiper-pagination-bullet::after,
.two-item-pagination4 .swiper-pagination-bullet::after,
.two-item-pagination5 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #fff;
  border-radius: 50%;
  transition: height 0.3s ease;
}
.two-item-pagination .swiper-pagination-bullet:hover,
.two-item-pagination1 .swiper-pagination-bullet:hover,
.two-item-pagination2 .swiper-pagination-bullet:hover,
.two-item-pagination3 .swiper-pagination-bullet:hover,
.two-item-pagination4 .swiper-pagination-bullet:hover,
.two-item-pagination5 .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5);
}
.two-item-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.two-item-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.two-item-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.two-item-pagination3 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.two-item-pagination4 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.two-item-pagination5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.1);
}
.two-item-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.two-item-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.two-item-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.two-item-pagination3 .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.two-item-pagination4 .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.two-item-pagination5 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  height: 100%;
}

.initiatives-section {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

p.suggestive-content {
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 300;
}

h2.underline::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: #00B68D;
  bottom: -15px;
  left: 0;
}

.charter-sec {
  margin-bottom: 80px;
}
.charter-sec .nav-tabs {
  border-bottom: 1px solid #A32A99;
}
.charter-sec .nav-tabs .nav-item {
  margin-bottom: 0;
}
.charter-sec .nav-tabs .nav-item:first-child .nav-link {
  border-left: 0px;
}
.charter-sec .nav-tabs .nav-item .nav-link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  background: #D8B4D7;
  padding: 20px;
  border: 0;
  border-left: 2px solid rgba(0, 51, 28, 0.25);
  border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 51, 28, 0.25) 20%, rgba(0, 51, 28, 0.25) 80%, transparent 80%) 1;
  border-radius: 0;
  cursor: pointer;
}
.charter-sec .nav-tabs .nav-item .nav-link.active {
  background: #A32A99 !important;
  color: #fff !important;
  border-left: 0px !important;
}
.charter-sec .nav-tabs .nav-item .nav-link.active + .nav-item .nav-link {
  border-left: 0px !important;
}
.charter-sec .nav-tabs .nav-item:has(.nav-link.active) + .nav-item .nav-link {
  border-left: 0px !important;
}
.charter-sec .tab-content .headh2 {
  color: #FFF;
  text-align: center;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 350;
  line-height: 55px; /* 109.375% */
  margin-bottom: 70px;
  margin-top: 30px;
}
.charter-sec .tab-content .swiper-slide {
  background: #fff;
  border-radius: 30px;
  height: auto;
}
.charter-sec .tab-content .swiper-slide .content-block {
  padding: 30px;
}
.charter-sec .tab-content .swiper-slide .content-block h3 {
  color: #231F20;
  font-size: 28px;
  font-style: normal;
  line-height: 130%; /* 36.4px */
  margin-bottom: 30px;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
}
.charter-sec .tab-content .swiper-slide .content-block p {
  color: rgba(35, 31, 32, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-bottom: 30px;
}
.charter-sec .tab-content .swiper-slide .img_wrapper {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
  border-radius: 25px;
}
.charter-sec .tab-content .swiper-slide .img_wrapper img {
  width: 100%;
}
.charter-sec .tab-content .one-item-slider .img_wrapper {
  height: 100%;
}
.charter-sec .tab-content .one-item-slider .img_wrapper img {
  height: 100%;
  object-fit: cover;
}
.charter-sec .tab-content .panel-heading {
  background-color: transparent !important;
  border-color: #007cc3 !important;
  padding: 25px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
}
.charter-sec .tab-content .panel-heading .panel-title {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
}
.charter-sec .tab-content .panel-heading .panel-title a {
  color: #fff;
  position: relative;
  padding-right: 70px;
  display: block;
}
.charter-sec .tab-content .panel-heading .panel-title a::after {
  content: "+";
  position: absolute;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  width: 40px;
  height: 50px;
  text-align: center;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.charter-sec .tab-content .panel-heading .panel-title a[aria-expanded=true]:after {
  content: "-";
  color: #fff;
  transform: rotate(180deg);
}

.bg-pink {
  background-color: #A32A99 !important;
  padding-top: 80px;
  padding-bottom: 120px;
}

.partners-sec {
  background-color: #F4F4F4;
  padding-top: 80px;
  padding-bottom: 80px;
}
.partners-sec img {
  max-width: 150px;
  margin-right: 20px;
}

.volunteering-banner {
  height: 400px;
  background-color: #A32A99;
  padding-bottom: 50px;
}
.volunteering-banner .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.volunteering-banner .banner-content .Breadcrumb {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.volunteering-banner .banner-content .Breadcrumb li {
  display: inline;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.volunteering-banner .banner-content .Breadcrumb li::after {
  content: " ";
  height: 12px;
  width: 18px;
  background: url(/content/dam/infosys-org/en/csr-2026/right-arrow.png) no-repeat center;
  margin: 0px 5px;
  color: #fff;
  display: inline-block;
}
.volunteering-banner .banner-content .Breadcrumb li:last-child::after {
  content: " ";
  background: none;
}
.volunteering-banner .banner-content .Breadcrumb li:last-child {
  font-weight: 600;
}
.volunteering-banner .banner-content .Breadcrumb li a {
  color: #fff;
}
.volunteering-banner .banner-content h1 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 5.6rem;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.impact-banner {
  height: 400px;
  background-color: #00B68D;
  padding-bottom: 50px;
}
.impact-banner .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.impact-banner .banner-content .Breadcrumb {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.impact-banner .banner-content .Breadcrumb li {
  display: inline;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.impact-banner .banner-content .Breadcrumb li::after {
  content: " ";
  height: 12px;
  width: 18px;
  background: url(/content/dam/infosys-org/en/csr-2026/right-arrow.png) no-repeat center;
  margin: 0px 5px;
  color: #fff;
  display: inline-block;
}
.impact-banner .banner-content .Breadcrumb li:last-child::after {
  content: " ";
  background: none;
}
.impact-banner .banner-content .Breadcrumb li:last-child {
  font-weight: 600;
}
.impact-banner .banner-content .Breadcrumb li a {
  color: #fff;
}
.impact-banner .banner-content h1 {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-weight: 500;
  font-size: 5.6rem;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.volunteering-tabs {
  background: #2E333A;
  margin-bottom: 80px;
}
.volunteering-tabs .nav-tabs {
  border-bottom: 0;
}
.volunteering-tabs .nav-tabs .nav-item {
  margin-bottom: 0;
}
.volunteering-tabs .nav-tabs .nav-item:first-child .nav-link {
  border-left: 0px;
}
.volunteering-tabs .nav-tabs .nav-item .nav-link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  background: #2E333A;
  padding: 20px 35px;
  border: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  border-image: linear-gradient(to bottom, transparent 20%, rgba(255, 255, 255, 0.25) 20%, rgba(255, 255, 255, 0.25) 80%, transparent 80%) 1;
  border-radius: 0;
  border-bottom: 0;
  cursor: pointer;
}
.volunteering-tabs .nav-tabs .nav-item .nav-link.active {
  background: #fff !important;
  color: #00331C !important;
  border-left: 0px !important;
}
.volunteering-tabs .nav-tabs .nav-item:has(.nav-link.active) + .nav-item .nav-link {
  border-left: 0px !important;
}

.volunteer-mobile-select {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #007cc3;
  border-radius: 0px;
  background: white;
  color: #333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007cc3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}
.volunteer-mobile-select:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 124, 195, 0.25);
}
.volunteer-mobile-select option {
  padding: 10px;
  font-weight: 500;
  background: white;
  color: #333;
}

.load-wrap {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
  display: inline-block;
  height: 50px;
}
.load-wrap .loader .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 0px;
  background-color: #D9D9D9;
}
.load-wrap .loader .line:nth-last-child(1) {
  animation: loadingA 1.5s 1s infinite;
}
.load-wrap .loader .line:nth-last-child(2) {
  animation: loadingA 1.5s 0.5s infinite;
}
.load-wrap .loader .line:nth-last-child(3) {
  animation: loadingA 1.5s 0s infinite;
}

@keyframes loadingA {
  0% {
    height: 15px;
  }
  50% {
    height: 35px;
  }
  100% {
    height: 15px;
  }
}
.similar-stories h2 {
  font-size: 55px;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  margin-bottom: 40px;
}

.empowering {
  background: #A32A99;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 80px;
}
.empowering h2 {
  color: #fff;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 5.6rem;
  line-height: 5.6rem;
  margin-bottom: 30px;
}
.empowering h3 {
  color: #fff;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 4.6rem;
  line-height: 4.6rem;
  margin-bottom: 15px;
}
.empowering .suggestive-content {
  color: #fff;
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 300;
  margin-bottom: 50px;
}
.empowering .empowering-card {
  background-color: #fff;
}
.empowering .empowering-card .content-section {
  padding: 70px 50px;
}
.empowering .empowering-card .content-section h3 {
  color: #000;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 350;
  line-height: 100%; /* 48px */
  margin-bottom: 40px;
}
.empowering .empowering-card .content-section p {
  color: rgba(35, 31, 32, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
.empowering .empowering-card .img-section img {
  height: 100%;
}
.empowering .empowering-card .img-section img.h-440 {
  height: 440px;
}
.empowering .empowering-card .img-section img.h-480 {
  height: 480px;
}

.anz-charter-card.social-impact {
  background-color: #B2E4FF;
}
.anz-charter-card.purpose-driven {
  background-color: #FFDCD5;
}
.anz-charter-card.empowering-tennis {
  background-color: #D4E8D9;
}
.anz-charter-card {
  padding: 70px 50px;
}
.anz-charter-card img {
  margin-bottom: 30px;
}
.anz-charter-card h3 {
  color: #000;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 350;
  line-height: 70px; /* 109.375% */
  margin-bottom: 30px;
}
.anz-charter-card p {
  color: rgba(35, 31, 32, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-bottom: 40px;
}
.anz-charter-card .read-more-link {
  color: rgba(35, 31, 32, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.anz-partners-sec {
  margin-bottom: 80px;
  margin-bottom: 80px;
}
.anz-partners-sec img {
  max-width: 400px;
}

#volunteering-anz {
  background-color: #F4F4F4;
  padding-top: 80px;
  padding-bottom: 80px;
}

.abt-infosys {
  margin-bottom: 120px;
  margin-top: 80px;
}
.abt-infosys .img-bx {
  padding-right: 0px;
}

.service-card {
  height: 315px;
}

.springboard-section .springboardDetails {
  margin: 50px auto 30px;
  gap: 30px;
}
.springboard-section .springboardDetails img {
  width: 120px;
}
.springboard-section .springboardDetails p {
  font-family: tungstenw05-medium, Oswald, sans-serif;
  font-size: 24px;
  line-height: 1;
  color: rgb(47, 17, 19);
  display: flex;
  align-items: center;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(241, 108, 81);
  border-image: initial;
  border-radius: 15px;
  padding: 5px 20px;
  gap: 20px;
  margin: 0px;
}
.springboard-section .springboardDetails p span {
  display: inline-block;
  color: #F62900;
  font-size: 60px;
}

@media (min-width: 576px) {
  .right-fluid {
    margin-left: calc((100% - 540px) / 2);
    max-width: none;
    width: auto !important;
  }
}
@media (min-width: 768px) {
  .right-fluid {
    margin-left: calc((100% - 720px) / 2);
    max-width: none;
    width: auto !important;
  }
  .h2-heading {
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
    font-weight: 500;
    font-size: 6.4rem;
    line-height: 6.4rem;
    color: #000000;
    margin-bottom: 50px;
  }
  .go-to-top {
    bottom: 20px;
    right: 20px;
  }
  .go-to-top::after {
    right: 60px;
    padding: 6px 10px;
  }
  .charter-sec {
    margin-bottom: 80px;
  }
  .charter-sec .panel-collapse.collapse {
    display: block;
  }
  .charter-sec .swiper-slide {
    height: 100%;
  }
  .hero-section .banner-content .heading-banner, .hero-section .banner-content h1 {
    font-size: 7.3rem;
  }
  .border-lg-end {
    border-right: 1px solid rgba(35, 31, 32, 0.3);
  }
  .stories-sec .storie:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .right-fluid {
    margin-left: calc((100% - 960px) / 2);
    max-width: none;
    width: auto !important;
  }
  .hero-section .banner-image {
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
  }
  .hero-section.home-banner .banner-image {
    height: 100vh;
  }
  .hero-section .banner-content .heading-banner, .hero-section .banner-content h1 {
    font-size: 8.8rem;
  }
  .hero-section .banner-pagination {
    bottom: 50px !important;
    right: 0px;
  }
  .custom-btn {
    padding: 12px 50px;
    font-size: 18px;
  }
  p.suggestive-content {
    font-size: 3.2rem;
    line-height: 4.2rem;
    margin-bottom: 80px;
    font-weight: 300;
  }
  .charter-sec .tab-content .headh2 {
    font-size: 64px;
    line-height: 70px;
  }
  .charter-sec .tab-content .swiper-slide .content-block h3 {
    font-size: 42px;
    line-height: 130%; /* 41.6px */
    margin-bottom: 30px;
  }
  .charter-sec .tab-content .swiper-slide .content-block p {
    font-size: 22px;
    line-height: 150%; /* 33px */
    margin-bottom: 30px;
  }
  .charter-sec .tab-content .panel-heading {
    display: none;
  }
  .search-text .content-section {
    padding: 64px;
  }
  .regions-section .region-img {
    height: 300px;
  }
  .stories-sec .storie h2 {
    font-size: 74px;
  }
  .stories-sec .storie h1 {
    font-size: 72px;
  }
  .stories-sec .storie h3 {
    font-size: 2.4rem;
    line-height: 36px;
  }
  .stories-sec .storie p {
    font-size: 2rem;
    line-height: 3rem;
  }
  .volunteering-banner .banner-content h1 {
    font-size: 7.2rem;
  }
  .similar-stories h2 {
    font-size: 64px;
  }
  .empowering {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
  /*  margin-top: 80px; */
  }
  .empowering h2 {
    color: #fff;
    font-size: 6.4rem;
    line-height: 7rem;
    margin-bottom: 50px;
  }
	  .empowering h3 {
    color: #fff;
    font-size: 5.4rem;
    line-height: 6rem;
    margin-bottom: 30px;
  }
  .empowering .suggestive-content {
    font-size: 3.2rem;
    line-height: 4.2rem;
    margin-bottom: 80px;
    font-weight: 300;
  }
  .ceo-section .profile-image {
    height: 515px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .right-fluid {
    margin-left: calc((100% - 1140px) / 2);
    max-width: none;
    width: auto !important;
  }
  .regions-section .region-img {
    height: 350px;
  }
  .abt-infosys .img-bx {
    padding-right: 100px;
  }
}
@media (min-width: 1400px) {
  .right-fluid {
    margin-left: calc((100% - 1320px) / 2);
    max-width: none;
    width: auto !important;
  }
}
@media (max-width: 768px) {
  .charter-sec .tab-content .tab-pane {
    display: block;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */