body{
    background-color: rgb(250,250,255);
}
.filterBTn {
    background: linear-gradient(90deg, #114ABB 0%, #17449E 100%);
    border: 1px solid #EE7B40;
    border-image-slice: 1;
    width: 109.66814422607422;
    height: 43;
    border-radius: 8px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 9px;
    padding-left: 24px;
    display: flex;
    color: #fff;
    align-items: center;
    gap: 8px;

}


.dataContainer {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


.dataContainer > * {
  flex: 1 1 280px;   /* behaves like auto-fill with min width 280px */
}



.instructorCard {
  width: 100%;
  max-width: 280px;
  min-width: 250px;
  min-height: 300px;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0px 0px 12px 4px #00000014;
  background-color: #fff;
}


.instructorCard .banner-img {
    width: 100%;
    height: 84px;
    object-fit: cover;
}

.instructorCard .profile-img {
    width: 100px;
    height: 100px;
    border: 2px solid #000000;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 12px;
}

.viewDetailBtn {
    background-attachment: rgb(236, 242, 254);
    color: #145FF4;
    font-size: var(--h5);
    font-weight: 500;
    padding: 2px 12px;
    border-radius: 24px;
    border: none;
    height: 28px;
}

.creatorCard {
    border: 1px solid #D3D4D6;
    max-width: 308px;
    min-height: 200px;
    border-radius: 15px;
    padding: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
       background-color: #fff;
}

.creatorCard img.profile-img {
    border: 1.2px solid #F2B200;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 452px) {
  .dataContainer {
    justify-items: center;
  }
}
#contactModal input,#contactModal select{
    height: 40px;
}