body {
  /* font-family: Montserrat; */
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 100;
  background: #f7f3f7;
}

html,
body {
  overflow-x: hidden;
}

/* style for the cookies */
#cookie-consent {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

#accept-cookies {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* for the teams page */
/* 
*, *:before, *:after {
    box-sizing: inherit;
  }
  
  .column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  } */

.material-switch > input[type="checkbox"] {
  display: none;
}

.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}

.material-switch > label::before {
  background: rgb(0, 0, 0);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: "";
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}
.material-switch > label::after {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: "";
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}

/* accordian style */

.panel-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.panel-heading {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.panel-body {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
}

.project-subheading {
  color: #0000ff; /* Same blue as headings */
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.1em;
}
.project-heading-mobile {
  color: #0000ff; /* Bootstrap's blue or match your design */
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.project-heading-mobile a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 10px;
}
