/*===============
IMPORT GLOBAL CSS
================*/
@import url(global.css);

.modal-dialog .modal-header {
  border: none;
}
.model-member {
  display: flex;
  justify-content: center;
}
.model-member .model-image {
  width: 200px;
  height: 200px;
  background: rgb(248, 249, 250);
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--custom-blue);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.model-member .model-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: top;
  transition: all 1s ease-in-out;
}
