.banner {
    position: relative;
    width: 100%;
    height: 100%;
}
.career-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50vh;
    overflow: hidden;
    /* padding-top: 10%; Adjust the padding-top to control the space between banner and content */
}
.banner-text{
    width: 100%;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 2%;
  padding-right: 8%;
  color: white;
  /* text-align: center; */
}

.about-us-container{
    position: relative;
    display: flex;
    padding: 5% 8% 10% 8%;
}

.about-us-img{
    width: 50%;
    /* height: 50vh; */
    display: flex;
}

.about-us-backimg{
    position: relative;
    flex: 1;
}
.about-us-frontimg{
    /* overflow-x: hidden; */
    position: absolute;
    z-index: 1;
    top: 54%;
    left: 20%;
}
.about-us-content{
    flex: 1;
}

.founder-container{
    background-color: #ebebeb;
    padding: 2% 5%;
}
.founder1{
    align-items: center;
    display: flex;
    padding: 2% 10%;
}
.founder1-content-section{
    padding-right: 13%;
    position: relative;
}

.founder2{
    align-items: center;
    display: flex;
    padding: 3% 10% 2%  10%;
}
.founder2-img-section{
    padding-right: 13%;
}

.vision-container{
    margin-bottom:4%;
}

.vision-pointers-container{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10%;
}
.vision-pointers{
    background-color: #b3a3a32b;
    transition: background-color 0.3s, border-radius 0.3s; /* Add transition for smoother effect */
    border-radius: 25px;
    flex: 1;
    min-width: 100px; /* Set a minimum width for each item */
    border: 1px solid #ccc;
    padding: 2% 5%;
    margin: 10px;
    text-align: center;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.vision-pointers:hover{
    background-color: #ffccbc; 
    border-radius: 55px; /* Adjust the hover border-radius value as needed */   
}

.value-container{
    padding-top: 2%;
    background: #eaeaeaff;
    font-size: 0.875rem;
    line-height: 1.5;
}

.values-pointer-container {
    /* padding: 0% 2%; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
  
  dl {
    background:linear-gradient(90deg, rgba(0,0,0,0.04) 20%, rgba(255,255,255,0) 0%);
    padding-left: 4vw;
    padding-right: 4vw;
    margin: 0;
  }
  
  dt {
    color: #4f6d7aff;
    /* font-family: $base-font-family; */
    font-size: 2vw;
    text-transform: uppercase;
  }
  
  
  dd {
    margin-left: 5vw;
    margin-bottom: 2vh;
  }
  



@media (max-width: 750px) {
    .vision-pointers {
      flex-basis: 100%; /* Make each item take 100% width on smaller screens */
    }
  }