/**
 * The stylesheet for the project layout, which is used for individual project
 * pages.
 */
/**
 * IMPORTANT: Most of these are exposed as CSS variables in main.scss
 */
main.content-limiter.project {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

h2 {
  margin-top: 4rem;
}

.proj-tools-cont {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0;
  gap: 45px;
}
.proj-tools-cont .tool-cont {
  display: inline-block;
  text-align: center;
}
.proj-tools-cont .tool-cont img {
  height: 80px;
  min-width: 80px;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 15px;
}
.proj-tools-cont .tool-cont .text {
  margin-top: 5px;
}
.proj-tools-cont .tool-cont .featured-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  height: 110px;
  box-sizing: border-box;
  background-color: white;
  color: #444444;
  width: 110px;
  border-radius: 5px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}
.proj-tools-cont .tool-cont .featured-text.large {
  font-size: 48px;
}

.gallery-preview {
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s;
  overflow: hidden;
  padding: 0 20px 20px 0;
  border: none;
  background: none;
  overflow: visible;
  margin-top: 1rem;
}
.gallery-preview:hover img {
  box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
}
.gallery-preview .text {
  font-size: 1.5em;
  padding: 10px 0;
}
.gallery-preview img {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  object-fit: cover;
  object-position: top;
}
.gallery-preview img.secondary {
  position: absolute;
  top: 20px;
  right: 0px;
  z-index: -1;
  height: calc(100% - 20px);
  filter: brightness(0.75);
  object-fit: cover;
  object-position: right;
}

p {
  max-width: 800px;
}

/*# sourceMappingURL=project.css.map */