/* CSS file for the Therapist Page */

/* Apply a box-sizing border-box model to all elements */
* {
  box-sizing: border-box;
}

/* Fonts for Elements */

/* Style the container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Style the header */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

/* Style the logo */
#main-logo {
  height: 100px;
}

/* Style the navigation menu */
.nav {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav-link {
  padding: 10px 15px;
  text-decoration: none;
  color: #173652;
}

.nav-link:hover {
  color: #e57d70;
}

/* Style the login and join buttons */
#login-button,
#signin-button {
  margin-left: 10px;
}
/* Style the buttons */
.btn {
  padding: 10px 15px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-outline-primary {
  background-color: transparent;
  color: #3d3b3b;
  border: 1px solid #3d3b3b;
}

.btn-outline-primary:hover {
  background-color: #173652;
  color: white;
  border: 1px solid #173652;
}

.btn-primary {
  background-color: #3d3b3b;
  color: white;
}

.btn-primary:hover {
  background-color: #de3d30;
  color: white;
}

#therapists {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Therapist Blocks */
.therapist-pic img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.therapist-card {
  background-color: rgba(32, 33, 36, .1);

  border-radius: 25px;
  padding: 10px;
  margin: 10px;
  /* height: 430px; */
  /* min-width: 369px; */
  height: auto;
}

.therapist-info {
  padding: 10px;
}

.required::after {
  content: "*";
  color: red;
}