/* https://coolors.co/007505-ffde58-f58b49-f4f4f4-4a4a4a */
:root {
  --office-green: #007505ff;
  --office-green-rgb: rgb(var(--office-green-rgb));
  --mustard: #ffde58ff;
  --mustard-rgb: rgba(var(--mustard-rgb));
  --atomic-tangerine: #f58b49ff;
  --atomic-tangerine-rgb: rgba(var(--atomic-tangerine-rgb));
  --white-smoke: #f4f4f4ff;
  --white-smoke-rgb: rgba(var(--white-smoke-rgb));
  --davys-gray: #4a4a4aff;
  --davys-gray-rgb: rgba(var(--davys-gray-rgb));
  --bs-primary: var(--office-green);
  --bs-secondary: var(--atomic-tangerine);
  --bs-success: var(--mustard);
  --bs-info: var(--white-smoke);
  --bs-danger: var(--davys-gray);
  --bs-light: var(--white-smoke);
  --bs-dark: var(--davys-gray);
  --bs-primary-rgb: rgba(var(--bs-primary-rgb));
  --bs-secondary-rgb: rgba(var(--bs-secondary-rgb));
  --bs-success-rgb: rgba(var(--bs-success-rgb));
  --bs-info-rgb: rgba(var(--bs-info-rgb));
  --bs-warning: var(--bs-primary);
  --bs-warning-rgb: rgba(var(--bs-warning-rgb));
  --bs-danger-rgb: rgba(var(--bs-danger-rgb));
  --bs-light-rgb: rgba(var(--bs-light-rgb));
  --bs-dark-rgb: rgba(var(--bs-dark-rgb));
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: $var(--bs-dark);
  --bs-body-heading-font-family: "Shadows Into Light Two", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-family: "Roboto" ;
}

#portfolio img.img-fluid {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  object-position: center;
  /* border-radius: 0.5rem; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.modal-dialog .img-fluid {
  margin: 0 auto;
  width: 80%;
  aspect-ratio: 2/1;
  height: auto;
  object-fit: cover;
  object-position: center;
  /* border-radius: 0.5rem; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

header.masthead {
  background-image: url("../assets/img/website_header.jpg");
}
header.masthead div.container {
  color: white;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem;
  border: 1px solid white;
}
header.masthead .masthead-subheading {
  margin-bottom: 1rem;
}
header.masthead .masthead-heading {
  margin: 1rem 0;
}
header.masthead .masthead-heading #masthead-logo {
  max-height: 150px;
  width: 100%;
}

div.review {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
  margin: 1rem;
  padding: 1rem;
}
div.review h4 {
  font-family: var(--bs-body-font-family);
  font-size: 1.2rem;
  margin: 0;
  margin-top: 0.5rem;
}
div.review img.stars {
  height: 20px;
}