.sepaBox{
    height: fit-content;
    width: 100%;
    display: flex;
}
.sepaBox-column{
    height: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
}
.sepaBox-column img{
    width: 100%;
    aspect-ratio: 4 / 5;
}

.aboutHeading{
    margin-bottom: 20px;
}
.aboutPara{
    text-align: justify;
}

.sepaBox-column-splts{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.splitCard{
    max-width: 50%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #f5f5f5;
    border-radius: 15px;
}
.splitCard p{
    font-size: 16px;
}
.metricCard{
    max-width: 100%;
    gap: 0;
}
.metricSplitsGrid{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
}
.mtrcImg{
    height: 40px;
    width: 40px !important;
    margin-bottom: 10px;
}

.textContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
}
ul, ol{
    margin: 0 0 0 30px !important;
}
.iconsGrid{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 20px;
    margin-top: 20px;
}
.iconCard{
    display: flex;
    padding: 20px;
    border-radius: 22px;
    background-color: #f5f5f5;
    gap: 20px;
}
.iconCard-img{
    height: 50px; width: 50px;
    border-radius: 50%;
}


element {
}
.solutionCard {
  text-decoration: none;

}
.solutionCard {
  width: calc((100vw - 120px - 60px)/3);
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solutionCard-icon {
  height: 150px;
  width: 150px;
  border: 10px solid white;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 0 0 -70px 0;
}
.solutionCard-textBox {
  background-color: var(--gchLiteGray);
  height: 360px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 52px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  padding: 90px 20px 50px 20px;
  gap: 10px;
}
.solutionCard-textBox h3{color: black; text-align: center;}
.solutionCard-textBox p{color: black; text-align: center;}

.solGridBox{
    display: grid;
    grid-template-columns: auto auto auto;
}
.sliderContainer {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 200px;
}

.sliderTrack {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.sliderCard {
    min-width: calc(100% / 3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}
.sliderCard img{
    height: 220px; width: 220px;
}