*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

.myList {
  display: flex;
}

body {
  background-color: #fff;
}

.title {
  text-align: center;
  font-weight: 600;
  margin: 40px 10px;
}

.members__section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px;
  justify-content: space-evenly;
}

.myListItem {
  flex: 1 0 1;
  list-style: none;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.07);
  padding: 15px 10px;
  gap: 10px;
}

.img-fluid {
  object-fit: scale-down !important;
  background-size: cover;
  height: 150px !important;
  width: 150px !important;
  border: 1px solid white;
  box-shadow: 5px 7px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50% !important;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  mix-blend-mode: luminosity;
}

.img-fluid:hover {
  transform: scale(1.101);
  mix-blend-mode: normal;
}

.myListItem h6:last-child {
  font-weight: 600;
}

@media (max-width: 790px) {
  .img-fluid {
    mix-blend-mode: normal;
  }
}



.phsps-img {
  height: 250px;
  width: 250px;
  position: absolute;
  right: 100px !important;
  z-index: 1;
  transform: translateX(-15px);
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .phsps-img {
    right: 10px !important;
  }
}

.phsps-img:last-child {
  right: 0;
}

/* FED600 */

.third__column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 767px) {
  .second__column,
  .fourth__column {
    display: none;
  }
  .third__column {
    margin-top: 20px;
  }
}

::-webkit-scrollbar {
  width: 8px !important;
}

::-webkit-scrollbar-track {
  background: #211f24 !important;
  border-radius: 15px !important;
}

::-webkit-scrollbar-thumb {
  background: #fde908;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #fde934;
}
