.even-circle-left,
.even-circle-right {
  height: 200px;
  width: 200px;
  border-radius: 100%;
  object-fit: cover;
  padding: 20px;
}

.even-circle-left {
  float: left;
}

.even-circle-right {
  float: right;
}

.scrollable-text {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.scrollable-text.mCustomScrollbar {
  max-height: 150px;
  overflow: hidden;
}

.mCustomScrollbar .mCSB_container {
  padding-right: 10px;
  margin-right: 7px;
  display: block;
  box-sizing: border-box;
}

.carousel-item .card {
  height: 300px; 
}

@media (max-width: 768px) {

  .even-circle-left,
  .even-circle-right {
    float: none;
    display: block;
    margin: 0 auto;
    height: 150px;
    width: 150px;
  }

  .card-body {
    text-align: center;
  }

  .scrollable-text {
    max-height: none;
    overflow: hidden;
  }

  .carousel {
    height: 470px;
  }

  .carousel-inner {
    height: 100%;
  }

  .carousel-item {
    height: 100%;
  }

  .carousel-item .card {
    height: 100%; 
    display: flex;
    flex-direction: column;
  }

  .carousel-item .card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 15px;
  }
}
















