html {
  font-size: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: block;
  position: relative;
}
html > * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: block;
  position: relative;
}
main {
  width: 100%;
  padding: 0;
  overflow: hidden;
  /* background-color: #000; */
  /* background: linear-gradient(0deg, #EE3238, #000000); */
}
body {
  padding: 0;
  margin: 0;
  color: #ffffff;
  box-sizing: border-box;
  display: block;
  position: relative;
  background-color: #000000;
}
nav {
  display: inline-flex;
  flex-flow: row nowrap;
  align-content: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
}
header {
  position: fixed;
  top: 0;
  left: calc(0.25rem + 2vw);
  right: calc(0.25rem + 2vw);
  z-index: 10;
  padding: 0.6rem 0rem;
  border-bottom: 1pt solid #ffffff;
}
header * {
  vertical-align: middle;
}
/* Q+M Logo in Header */
#site-logo-container {
  display: inline-block;
  width: 4rem;
  height: 2.57rem;
  overflow: hidden;
  /* Shadow for when logo is over brand red background */
  box-shadow: 0rem 0.3rem 2.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
#site-logo-container > img {
  display: inline-block;
  position: relative;
  top: 0rem;
  width: 4rem;
}
#site-logo-container > img.scroll-logo, #site-logo-container > img.scroll-logo + img {
  top: -2.57rem;
  transition: all 0.4s ease-out;
}
section {
  display: block;
  box-sizing: border-box;
  max-width: 72rem;
  margin: auto;
  padding: 1rem;
  padding: 1rem calc(0.25rem + 2vw);
}
#intro-banner {
  margin: auto;
  margin-bottom: 4rem;
  padding: 0.5rem;
  padding-top: 6rem;
  text-align: center;
  background-color: #000;
  overflow-x: hidden;
}
#intro-banner video {
  width: 100%;
  max-width: 1280px;
  padding: 0;
  margin: 0;
  object-fit: contain;
}
hr {
  border-color: #fff;
  border-style: solid;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  text-align: center;
  font-style: italic;
  margin: 0rem;
  margin-bottom: 0.75em;
}
h1 {
  font-size: 72px;
  color: #fff;
}
h2 {
  font-size: 5vw;
  line-height: 0.9em;
}
h3 {
  font-size: 1.5em;
  line-height: 1.2em;
}
p {
  font-size: 1em;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
/* ------------------------------------ */
/* -------- Service List -------------- */
/* ------------------------------------ */
dl {
  margin: 0;
  padding: 0;
  text-align: left;
}
.services-list > dt, .services-list > dd {
  display: inline-block;
  padding: 0.2em 0.5em;
  border: 0.1em solid #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0;
  margin-right: 0.75em;
  margin-bottom: 0.5em;
}
.services-list dt {
  background-color: #fff;
  color: rgb(238, 50, 56);
}
.services-list dd {
  color: #fff;
}
/* ------------------------------------ */
.sticky {
  position: sticky;
  top: 0px;
}
#menu, #menu > ul {
  display: flex;
  flex-flow: row nowrap;
  align-content: center;
  justify-content: center;
  vertical-align: middle;
  flex: 100% 1 1;
  padding: 0rem;
  padding-left: 1rem;
  margin: 0;
}
ul li {
  display: inline-block;
  padding: 0rem 0.75rem;
}
#menu a {
  text-decoration: none;
  color: #fff;
  position: relative;
  /* text-shadow: 0em 0.1em 0.6em rgba(0,0,0,0.5); */
}
#menu a:hover, #menu a:active, #menu a:focus {
  cursor: pointer;
  color: #000;
  text-shadow: none;
  transition: color 0.2s ease-in;
  transition-delay: 0.1s;
}
#menu a::before {
  background-color: #fff;
  content: ' ';
  top: -0.2em;
  left: -0.3em;
  right: -0.3em;
  bottom: -0.2em;
  position: absolute;
  display: block;
  z-index: -1;
  transform: scaleX(0);
}
#menu a:hover::before, #menu a:focus::before, #menu a:active::before {
  transform: scaleX(1);
  transition: transform 0.125s cubic-bezier(0, 0.6, 1, 0.4);
}
/* ----- ------------------------ ----- */
/* ----- HOME WORK BLOCKS FLEXBOX ----- */
/* ----- ------------------------ ----- */
.work-flexitem {
  box-sizing: border-box;
  /*flex: 1 1 40%;*/
  background-color: #000000;
  background-color: none;
  background-clip: content-box;
  height: 20rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0rem);
  transition: all 0.25s ease-out;
}
.work-flexitem:hover, .work-flexitem:focus, .work-flexitem:focus-within, .work-flexitem:active {
  transform: translateY(-0.25rem);
}
.work-flexitem:hover > .work-background, .work-flexitem:focus > .work-background, .work-flexitem:focus-within > .work-background, .work-flexitem:active > .work-background {
  opacity: 0.75;
  transition: all 0.25s ease-out;
}
.work-flexitem > .work-background {
  position: absolute;
  padding: inherit;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 0;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  box-sizing: border-box;
}
.work-flexitem > .work-logo {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 6rem;
  max-width: 75%;
  object-fit: contain;
  z-index: 10;
}
/* ----- ------------------------ ----- */
/* ----- HOME PAGE ITEMS ----- */
/* ----- ------------------------ ----- */
/* ----- Contact Section ------------------------------------------------------- */
div#contact-email {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
  margin-top: 3rem;
}
div#contact-email a {
  font-size: 1rem;
  font-size: calc(0.75rem + 1vw);
  font-weight: bold;
  border: 0.3em solid white;
  padding: 1rem 2rem;
  display: inline-block;
  transition: all 0.125s ease-out;
}
div#contact-email a:hover, div#contact-email a:focus, div#contact-email a:active {
  transform: translateY(-0.25rem);
  box-shadow: 0rem 0.25em 1em -0.125rem rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
#quincy-container {
  position: relative;
  padding-top: 1rem;
}
#quincy-container img {
  display: inline-block;
  vertical-align: middle;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
#quincy {
  width: 2.5rem;
  margin: 1rem;
  -webkit-filter: drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.1));
  z-index: 1;
}
#quincy-container img:not(#quincy) {
  height: 5rem;
  height: calc(4rem + 1vw);
  margin-top: -1rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease-in-out 0s;
  animation: floating 4s ease-in-out infinite;
}
#quincy-container:has(#quincy:hover) > img:not(#quincy) {
  opacity: 1;
  transition-delay: 0.5s;
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
/* ---------------------------------------------------------------------------- */
/* ----- Footer Section ------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
footer {
  background-color: #15101f;
  color: #e5e0ef;
  min-height: 50vh;
  text-align: center;
  margin: 0;
  margin-bottom: -1rem;
  padding: 3rem 0rem;
}
footer p {
  display: block;
  margin: 2rem auto;
}
#signup-form {
  padding: 0;
  margin: 0;
}
#signup-form input {
  font-size: 1rem;
  box-sizing: border-box;
  border: 0.2em solid #e5e0ef;
  border-radius: 0rem;
  padding: 0.2em 0.5em;
  vertical-align: middle;
}
#signup-form input[type="email"] {
  background-color: none;
  background: none;
  color: #e5e0ef;
}
#signup-form input[type="submit"] {
  background-color: #e5e0ef;
  background: #e5e0ef;
  color: #15101f;
  cursor: pointer;
}
#signup-form input[type="submit"]:hover, #signup-form input[type="submit"]:active, #signup-form input[type="submit"]:focus {
  border-color: rgb(238, 50, 56);
  color: rgb(238, 50, 56);
  outline: none;
}
footer .social-icons {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
footer .social-icons img {
  display: inline-block;
  width: 3rem;
  padding: 0rem 0.5rem;
  transition: opacity 0.3s;
}
footer .social-icons:has(a:hover) img, footer .social-icons:has(a:focus) img {
  opacity: 0.5;
}
footer .social-icons a:hover > img, footer .social-icons a:focus > img {
  opacity: 1;
}
/* ---------------------------------------------------------------------------- */
/* ----- Staff Thoughts ------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
.staff p {
  font-family: "Lucida Bright", Georgia, "serif";
  font-style: italic;
  line-height: 1.36;
  display: inline-block;
  padding: 0;
  margin: 0;
  text-rendering: optimizeLegibility;
  width: 85%;
  width: calc(100% - 4em);
}
.staff, .staff *, .staff::before, .staff::after {
  vertical-align: middle;
}
.staff p::before {
  content: '[Q+M]';
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9em;
  font-style: normal;
  opacity: 0.85;
  padding: 0em 0.1em;
  margin-right: 0.3em;
}
.james p::before {
  content: '\002058  James \002058';
}
.james::before {
  background-image: url('../_assets/_staff-monograms/staff-james.png');
}
.al p::before {
  content: '\002058  Al \002058';
}
.al::before {
  background-image: url('../_assets/_staff-monograms/staff-al.png');
}
.kieley p::before {
  content: '\002058  Kieley \002058';
}
.kieley::before {
  background-image: url('../_assets/_staff-monograms/staff-kieley.png');
}
.catherine p::before {
  content: '\002058  Catherine \002058';
}
.catherine::before {
  background-image: url('../_assets/_staff-monograms/staff-catherine.png');
}
.mikyelah p::before {
  content: '\002058  Mikyelah \002058';
}
.mikyelah::before {
  background-image: url('../_assets/_staff-monograms/staff-mikyelah.png');
}
.ellen p::before {
  content: '\002058  Ellen \002058';
}
.ellen::before {
  background-image: url('../_assets/_staff-monograms/staff-ellen.png');
}
/* Testing out New Style */
.staff {
  position: relative;
  display: block;
  background-color: rgb(238, 50, 56);
  color: white;
  padding: 0.6em 0.8em;
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  border-top: 1.25pt solid white;
  border-left: 1pt solid white;
  width: 100%;
  /*margin-left: -3rem;*/
}
.al::before,
.kieley::before,
.james::before,
.catherine::before,
.mikyelah::before,
.ellen::before {
  content: ' ';
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 3em;
  height: 3em;
  margin-right: 0.6em;
  z-index: 10;
}

/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */