.aboutus {
  background-color: white;
  font-family: Open Sans,sans-serif;
  -webkit-font-smoothing: antialiased;
  margin-top: 0;
  margin: 0;
}

.heading-ab {
  text-align: center;
  padding: 50px 0;
}

.heading-ab h1 {
  font-size: 36px;
  font-weight: bold;
}

.underline-ab {
  width: 150px;
  height: 8px;
  margin: 0px auto;
  background-image: url(/static/images/headingunderline.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-ab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.centered-text-ab {
  max-width: 60%;
  text-align: center;
  margin: 0 auto;
}

.centered-text-ab p {
  font-size: 16px;
}



.container-car {
  position: relative;
  background-color: white;
  padding-top: 20px;
}

.card-divider {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 60px; /* Adjust the height of the card-divider image */
  width: 100px; /* Adjust the width of the card-divider image */
  background-image: url("/static/images/card-divider.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

.blue-section {
  background-color: #72CEF7;
  height: 40vh;
  margin-top: 20px;
}

.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%; /* Adjust the height to leave some space at the bottom for the indicators */
  width: 60%;
  margin: 0 auto;
}

.slide-text {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 200px; /* Adjust the width as needed */
}


.content-car {
  width: 60%;
  margin: 0 auto;
}

.carousel-indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.carousel-indicators li.active {
  background-color: white;
}

.carousel-inner {
  position: relative;
  height: 100%;
}

.carousel-item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item.active {
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;

  transform: translateY(-50%);
  z-index: 5;
  color: white;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-size: 30px;
}

.carousel-control-prev {
  left: 1px;
}

.carousel-control-next {
  right: 1px;
}

.logo-row-aboutus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}


.logo-row-aboutus img {
  max-height: 60px;
  margin-right: 20px;

}
.team-section {
  background-color: #72CEF7;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 600px;
  text-align: center;
}

.section-heading {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-left:20%;
  margin-right: 20%;
}

.section-paragraph {
  color: white;
  font-size: 18px;
  margin-left:20%;
  margin-right: 20%;
}

.person-section {
  display: flex;
  background-color: white;
  padding: 20px;
  align-items: center;
}

.person-image {
  flex: 0 0 auto;
  margin-left: 17%;
  margin-right: 3%;
  border: 2px solid #72CEF7;
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
}


.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-intro {
  text-align: center;
  margin-right: 30%;
}

.person-intro h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.person-intro p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}


