html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bgImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.bgImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1s ease-in-out;
}

/* hero content */
.heroContent {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
}

.headin {
  position: relative;
  min-height: 100%;
  width: 75%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.headinIndicators {
  position: absolute;
  top: 60px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.headinIndicator {
  width: 10px;
  height: 50px;
  border-radius: 5px;
  background-color: #e5e7eb;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.headinIndicator:hover {
  transform: scaleX(1.5);
}

.headinIndicator.active {
  background-color: #ebebeb;
}

.headinIndicatorLoader {
  height: 0%;
  width: 100%;
  border-radius: 5px;
  background-color: #f35163;
  transition: height 0.1s linear;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: none;
}

.headinTop {
  width: 90%;
  padding: 60px 0;
  font-family: "Inter";
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.4;
}

.headinSubHeader {
  font-weight: 600;
}

.headinHeader {
  max-width: 640px;
  font-size: 64px;
  font-weight: 800;
}

.headinDes {
  max-width: 450px;
  font-size: 16px;
  font-weight: 400;
}

.headinButtons {
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.headinButton {
  width: 124px;
  height: 40px;
  border-radius: 50px;
  background: #f35163;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.headinButton:hover {
  background-color: white;
  color: #333;
  transition: background-color 0.4s all;
}

.headinButton1 {
  height: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.headinButton1 i {
  transform: rotate(325deg);
}

.headinButton1:hover i {
  transform: rotate(0deg);
}

.headinBottom {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}

.headinBottomBoxes {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.headinBottomBox {
  height: 200px;
  flex: 1 1 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
  gap: 10px;
}

.headinBottomBox {
  border-left: 1px solid #b8bbc0;
}

.headinBottomBox:first-child {
  align-items: flex-start;
  border: none;
}

.headinBottomBox h3 {
  width: 150px;
  letter-spacing: 3px;
  font-size: 48px;
}

.headinBottomBox span {
  width: 150px;
  color: #e5e7eb;
}

.headinBottomLink {
  height: 200px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headinLink {
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.headinLink:hover {
  border: none;
  background-color: #f35163;
  transition: background-color 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.headinBottomLine {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #b8bbc0;
}

/* Hero Mobile View */
@media (max-width: 1300px) {
  .headin {
    width: 85%;
  }

  .headinTop {
    width: 95%;
  }

  .headinBottom {
    width: 100%;
  }

  .headinBottomBox h3 {
    width: 120px;
    font-size: 36px;
  }

  .headinBottomBox span {
    width: 120px;
    font-size: 13px;
    color: #e5e7eb;
  }
}

/* hero responsive */

@media (max-width: 1020px) {
  .headinBottomBox h3 {
    font-size: 30px;
  }
}

@media (max-width: 868px) {
  .headinHeader {
    max-width: 500px;
    font-size: 48px;
  }

  .headinIndicator {
    height: 40px;
    width: 8px;
  }

  .headinDes {
    max-width: 400px;
    font-size: 14px;
  }

  .headinBottomLine {
    bottom: 400px;
  }

  .headinBottomBoxes {
    gap: 0;
  }

  .headinBottomBoxes {
    border-left: 1px solid #b8bbc0;
    border-right: 1px solid #b8bbc0;
  }

  .headinBottomBox {
    border: none;
    padding: 10px;
  }

  .headinBottomBox:first-child,
  .headinBottomBox:nth-child(2) {
    border-bottom: 1px solid #b8bbc0;
  }

  .headinBottomBox:first-child,
  .headinBottomBox:nth-child(3) {
    align-items: center;
    border-right: 1px solid #b8bbc0;
  }

  .headinBottomBox h3 {
    width: 160px;
    font-size: 30px;
  }

  .headinBottomBox span {
    width: 160px;
    font-size: 13px;
  }

  .headinBottomLink {
    width: 200px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    scroll-behavior: auto;
  }

  .headinIndicators {
    top: 40px;
    width: 7px;
  }

  .headinIndicator {
    height: 35px;
  }

  .headinTop {
    padding: 40px 0;
    width: 90%;
    line-height: normal;
    gap: 20px;
  }

  .headinHeader {
    font-size: 40px;
  }

  .headinBottom {
    width: 100%;
    display: flex;
    flex-flow: column;
  }

  .headinBottomBox {
    flex: 1 1 200px;
    padding: 0 20px;
    height: 150px;
  }

  .headinBottomBox h3 {
    max-width: auto;
    font-size: 24px;
  }

  .headinBottomBox span {
    max-width: auto;
    font-size: 13px;
  }

  .headinBottomLink {
    width: 100%;
    height: 100px;
    min-width: 160px;
    border: 1px solid #b8bbc0;
  }

  .headinBottomLine {
    bottom: 400px;
  }
}

@media (max-width: 480px) {
  .headinIndicators {
    top: 45px;
    right: 0;
    left: auto;
    display: flex;
    flex-direction: row;
    width: fit-content;
  }

  .headinIndicator {
    width: 30px;
    height: 6px;
  }

  .headinTop {
    width: 100%;
  }

  .headinIndicatorLoader {
    width: 0%;
    height: 100%;
  }

  .headinHeader {
    max-width: 450px;
    font-size: 36px;
  }

  .headinBottomBox {
    flex: 1 1 150px;
  }

  .headinBottomBox h3 {
    max-width: 100px;
    font-size: 24px;
  }

  .headinBottomBox span {
    max-width: 100px;
  }
}

@media (max-width: 360px) {
  .headinBottomBox {
    flex: 1 1 100px;
    padding: 0 10px;
  }
}

/* main section */

.mainSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* project section */

.projectSection {
  width: 85%;
  padding: 120px 0;
  display: flex;
  flex-flow: column;
  gap: 40px;
  position: relative;
}

.projectHeaders {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px 20px;
}

.projectHeadersLeft {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.projectSubHeader span {
  font-weight: 600;
  color: #f35163;
}

.projectsHeader {
  max-width: 400px;
  font-size: 36px;
  font-weight: 700;
}

.projectHeadersRight {
  max-width: 400px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.projectHeadersRight span {
  font-weight: 600;
}

.projectHeadersRight select {
  padding: 7px 15px;
  border: 1px solid #ebebeb;
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
  font-family: "Inter";
}

/* projects */

.projects {
  position: unset;
  overflow: hidden;
  align-items: stretch;
}

.projects .slick-slide {
  margin-right: 20px;
}

.project {
  position: relative;
  min-width: 250px;
  flex: 1 1 350px !important;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
}

.projectTop {
  padding: 30px 20px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.5;
}

.projectImages {
  width: 100%;
  padding-top: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.projectMainImage {
  width: 100%;
  height: 200px;
}

.projectMainImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projectSubImages {
  width: 100%;
  display: flex;
  gap: 10px;
}

.projectImage {
  position: relative;
  flex: 1 1 50px;
  height: 50px;
}

.projectImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.totalImages {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.projectName {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4em;
  height: calc(1.4em * 2);
  overflow: hidden;
  text-overflow: ellipsis;
}

.projectOrganization {
  font-size: 13px;
  color: #6951f3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.2em;
  height: calc(1.2em * 1);
  overflow: hidden;
  text-overflow: ellipsis;
}

.projectBottom {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.projectDes {
  font-size: 13px;
  font-weight: 400;
  color: #4b4b4b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-height: 1.2em;
  height: calc(1.2em * 3); /* 1.2em line height times number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.projectExtra {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 15px 10px;
}

.projectButton a {
  width: 120px;
  height: 40px;
  border-radius: 23px;
  font-size: 13px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}

.projectButton a:hover {
  background-color: #f35163;
  transition: 0.4s all forwards;
}

.projectDate {
  color: #757474;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.projectFlag {
  min-width: 20px;
  height: 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}

.projectFlag.Green {
  color: #4caf50;
  background-color: #f3faf7;
}

.projectFlag.Red {
  color: #f44336;
  background-color: #fdf2f2;
}

.projectFlag.Orange {
  color: #f8794b;
  background-color: #fcf0e1;
}

.projectFlag.Yellow {
  color: #ffeb3b;
  background-color: #fdfdea;
}

.leftControl,
.rightControl {
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 1;
}

.leftControl.active,
.rightControl.active {
  background-color: #000;
  color: white;
  cursor: pointer;
}

.leftControl:not(.active),
.rightControl:not(.active) {
  opacity: 0.3;
  pointer-events: none;
}

.leftControl {
  left: -80px;
}

.rightControl {
  right: -80px;
}

.exploreButton {
  padding: 10px 0 20px;
}

.exploreButton a {
  width: 150px;
  height: 45px;
  font-weight: 600;
  border: 1px solid #b8bbc0;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exploreButton a:hover {
  border: none;
  background-color: #f35163;
  color: white;
  transition: 0.4s all linear;
}

/* project responsive */

@media (max-width: 1200px) {
  .projectsHeader {
    font-size: 30px;
  }

  .leftControl,
  .rightControl {
    width: 40px;
    height: 40px;
  }

  .leftControl {
    left: -60px;
  }

  .rightControl {
    right: -40px;
  }
}

@media (max-width: 868px) {
  .projectsHeader {
    font-size: 25px;
  }

  .leftControl,
  .rightControl {
    width: 35px;
    height: 35px;
  }

  .leftControl {
    left: -40px;
  }

  .rightControl {
    right: -20px;
  }
}

@media (max-width: 640px) {
  .projects .slick-slide {
    margin-right: 2px;
  }

  .projectsHeader {
    font-size: 22px;
  }

  .leftControl,
  .rightControl {
    width: 35px;
    height: 35px;
  }

  .leftControl {
    left: -15px;
    background-color: black;
    color: white;
  }

  .rightControl {
    right: -15px;
  }

  .leftControl:not(.active),
  .rightControl:not(.active) {
    visibility: hidden;
  }
}

@media (max-width: 420px) {
  .projectSection {
    padding: 80px 0;
    gap: 20px;
  }

  .projectHeaders {
    flex-wrap: wrap;
  }

  .projectSubHeader span {
    font-size: 13px;
  }

  .projectsHeader {
    font-size: 22px;
    font-weight: 600;
  }

  .projectHeadersRight {
    flex: 1;
    flex-wrap: nowrap;
    align-items: end;
    gap: 10px;
  }

  .projectHeadersRight span {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  .projectHeadersRight select {
    width: auto;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ebebeb;
    padding: 0 10px 0 0;
    color: #4b4b4b;
    font-weight: 500;
  }

  .projectHeadersRight select:focus {
    outline: none;
  }

  .projectName {
    font-size: 16px;
  }

  .projectOrganization {
    font-size: 12px;
  }
}

/* map projects */

.mapProjectsContainer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mapLeft {
  position: relative;
  width: 100%;
  min-height: 600px;
  flex: 1 1 500px;
  padding: 120px 0;
  background: #2d2e2f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.mapProjectHeaders {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mapProjectSubHeader {
  font-weight: 600;
  color: #f35163;
}

.mapProjectName {
  max-width: 520px;
  font-size: 36px;
  font-weight: 700;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  height: calc(1.2em * 2); /* 1.2em line height times number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mapProjectDes {
  max-width: 520px;
  font-size: 15px;
  font-weight: 400;
  color: #d4d4d4;
}

.mapProjectExtras {
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mapProjectExtra {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.extraHeader {
  font-size: 15px;
  font-weight: 600;
}

.extraDes {
  font-size: 13px;
  font-weight: 400;
}

.mapProjectButton {
  width: 80%;
  display: flex;
  justify-content: right;
}

.mapProjectButton a {
  width: 140px;
  height: 40px;
  border-radius: 23px;
  font-size: 13px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}

.mapImage {
  position: absolute;
  left: -100px;
  bottom: -100px;
  height: 400px;
}

.mapImage img {
  height: 100%;
  width: auto;
}

.mapProjectsContainer:hover .mapImage {
  animation: rotateGlobe 3s linear;
  transform-style: preserve-3d;
}

.mapMap {
  position: relative !important;
  flex: 1 1 500px;
  min-height: 600px;
}

.mapMap #map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nextProject,
.prevProject {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f35163;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 1;
  cursor: pointer;
}

@keyframes rotateGlobe {
  from {
    opacity: 0.5;
    transform: rotateY(25deg);
  }
  to {
    transform: rotateY(0);
  }
}

@media (max-width: 1200px) {
  .mapImage {
    left: -80px;
    bottom: -80px;
    height: 350px;
  }

  .controls {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 999px) {
  .controls {
    top: auto;
    bottom: 558px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 520px) {
  .mapLeft {
    padding: 80px 0;
  }

  .map {
    min-height: 450px;
  }

  .mapProjectName {
    font-size: 28px;
    -webkit-line-clamp: 3;
    line-height: 1.2em;
    height: calc(1.2em * 3);
  }

  .mapImage {
    height: 300px;
  }
}

@media (max-width: 400px) {
  .mapImage {
    height: 250px;
  }
}

/* entity section */
.entitySection {
  width: 85%;
  padding: 120px 0;
  display: flex;
  flex-flow: column;
  gap: 40px;
  position: relative;
}

.entityHeaders {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px 20px;
}

.entityHeadersLeft {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.entitySubHeader {
  font-weight: 600;
  color: #f35163;
}

.entitiesHeader {
  max-width: 400px;
  font-size: 36px;
  font-weight: 700;
}

.entityHeadersRight {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.entityHeadersRight::-webkit-scrollbar {
  display: none;
}

.entityHeadersRight:first-child {
  scroll-snap-align: start;
}

.entityFilter {
  padding: 10px 20px;
  font-weight: 500;
  background-color: #f3f4f6;
  border-radius: 19px;
  color: #2d2e2f;
  cursor: pointer;
}

.entityFilter.active {
  background-color: #f35163;
  color: white;
}

.entities {
  position: unset;
  overflow: hidden;
  padding: 2px 0;
}

.entities .slick-slide {
  margin-right: 20px;
}

.entity {
  position: relative;
  min-width: 250px;
  flex: 1 1 350px !important;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.entityTop {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.entityImage {
  width: 50px;
  height: 50px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.entityImage img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 50%;
}

.entityName {
  padding: 10px 0 0;
  font-size: 16px;
  font-weight: 600;
}

.entityType {
  font-size: 13px;
  color: #4b4b4b;
}

.entityBottom {
  margin: 15px 20px 25px;
  /* border: 1px solid #e5e7eb; */
  border-radius: 5px;
}

.entityExtra {
  padding: 10px 0;
  color: #757474;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.entityExtra:first-child {
  border-bottom: 1px solid #e5e7eb;
}

.entityExtra h5 {
  color: #000;
}

.showEntity {
  position: absolute;
  top: 30px;
  right: 20px;
  transform: rotate(180deg);
}

/* entity responsive */

@media (max-width: 1200px) {
  .entitiesHeader {
    font-size: 30px;
  }
}

@media (max-width: 868px) {
  .entitiesHeader {
    font-size: 25px;
  }

  .entitySection {
    padding: 100px 0;
  }
}

@media (max-width: 640px) {
  .entities .slick-slide {
    margin-right: 2px;
  }

  .entityHeadersRight {
    overflow: auto;
  }

  .entityFilter {
    font-size: 13px;
    white-space: nowrap;
  }
}

/* stakeholder section */
.stakeholdersSection {
  width: 100%;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
}

.stakeholdersContaier {
  position: relative;
  width: 85%;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.stakeholdersHeaders {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stakeholdersHeader {
  font-size: 36px;
  font-weight: 700;
}

.stakeholdersDes {
  font-weight: 400;
  color: #2d2e2f;
}

.stakeholders {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.stakeholder {
  padding: 40px 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.stakeholderIcon {
  margin: 0 0 15px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #f35163;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stakeholderName {
  font-size: 16px;
  font-weight: 600;
}

.stakeholderSub {
  color: #2d2e2f;
}

.stakeholderButton {
  display: flex;
  justify-content: center;
}

.stakeholderButton a {
  position: relative;
  width: 150px;
  height: 40px;
  border-radius: 20px;
  background: #000;
  color: white;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.stakeholderButton a i {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(315deg);
}

.stakeholderButton a:hover {
  background: #f35163;
  transition: 0.4s all linear;
}

.stakeholderButton a:hover i {
  transform: rotate(36deg);
  transition: 0.4s all linear;
}

.stakeholderImage {
  position: absolute;
  bottom: -220px;
  height: 600px;
  z-index: 0;
}

.stakeholderImage img {
  width: auto;
  height: 100%;
}

.stakeholdersSection:hover .stakeholderImage img {
  animation: rotateGlobe2 3s linear;
  transform-style: preserve-3d;
}

@keyframes rotateGlobe2 {
  from {
    opacity: 0.5;
    transform: rotateY(30deg);
  }
  to {
    transform: rotateY(0);
  }
}

/* responsive */

@media (max-width: 1200px) {
  .stakeholderImage {
    bottom: -180px;
    height: 450px;
  }
}

@media (max-width: 900px) {
  .stakeholderImage {
    bottom: -150px;
    height: 400px;
  }
}

@media (max-width: 720px) {
  .stakeholdersContaier {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {
  html,
  body {
    scroll-behavior: initial;
  }

  .stakeholderImage {
    bottom: -120px;
    height: 350px;
  }
}

/* scroll animtions */

/* animations */

.animatable.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
}

.animatable.fadeIn {
  opacity: 0;
}

.animatable.fadeUp {
  transform: translateY(20px);
}

.animated.fadeInUp {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s linear;
}

.animated.fadeIn {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.animated.fadeUp {
  z-index: 4;
  transform: translateY(0);
  transition: all 0.5s linear;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translatex(20px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translatex(-20px);
  }
}

@keyframes scaleDown {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fadeOut {
  animation: fadeOut 0.5s forwards;
}

.fadeInUp2 {
  animation: fadeInUp 0.5s ease-in-out forwards;
}

.fade-in-animation {
  animation: fade 1s ease-in-out;
}

/* @extra  */

.skeleton.slick-slide {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: #fafafa;
  animation: pulse 1.5s infinite;
}

.skeletonTop {
  width: 80%;
  height: 80px;
  background: #e5e7eb;
  border-radius: 10px 10px 0 0;
}

.skeletonBottom {
  width: 80%;
  height: 120px;
  background: #e5e7eb;
  border-radius: 10px;
}

@keyframes pulse {
  0% {
    background-color: #f3f4f6;
  }
  50% {
    background-color: #e5e7eb;
  }
  100% {
    background-color: #f3f4f6;
  }
}
