
/* Custom theme*/

/* This must remain at the top of this file.                 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');
@import url('_extensions/quarto-ext/fontawesome/assets/css/all.css');


:root {
  --primary-orange: #e053c1;
  --secondary-orange: #4eb83e;
  --main-font: 'Roboto', sans-serif;
  --subheader-font: 'Roboto', sans-serif;
  --mono-font: 'Fira Mono', monospace;
  --header-font: 'Lato' sans-serif;
  --bs-navbar-hover-color: #53dbe0;
}

/* ----------- ABOUT PAGE -----------*/

/*-- Team info cards --*/

/* Three columns side by side */
.card-column {
  float: left;
  width: 28.8%;
  margin-bottom: 16px;
  padding: 0 12px;
  flex-direction: row;
  display: block;
}


/* Display the columns below each other instead of side by side on small screens */

@media screen and (max-width: 952px) {
  .card-column {
    width: 100%;
    display: block;
  }
}

/* Add some shadows to create a card effect */
.team-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
  padding: 0 16px;
}

/* Clear floats */
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.team-image {
  opacity: 1;
  display: block;
  width: auto;
  height: 100%;
  transition: .5s ease;
  backface-visibility: hidden;
}

.team-image-text {
  color: #E06E53;
  font-size: 14px;
  padding: 16px 28px;
}

.team-image:hover {
  opacity: 0.7;
}

.name {
  color: #B8573E !important;
  margin-bottom: 4px;
  line-height: 1.2;
  text-decoration: none !important;
}

.name:hover {
  color: #E06E53 !important;
  text-decoration: none !important;
}

.job-title {
  color: #222322;
  font-size: 13px;
  margin-bottom:5px;
  line-height: 1;
}


.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #B8573E;
  text-align: center;
  cursor: pointer;
  width: 20%;
  clip-path: circle();
}

.button:hover {
  background-color: #E06E53;
}