:root {
  --mreq-color-button-border-active: #ef861a;
  --mreq-color-button-border: #a5281c;
  --mreq-photocopyright-font-size-normal: 12px;
  --mreq-button-background-hover-color: rgba(0, 0, 0, 0.125);
  --mreq-text-color: #f0f0f0;
  --mreq-text-hover-color: #ffffff;
  --mreq-text-hover-bg-color: black;
  --mreq-body-bg-color: rgb(119 127 117);
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flexCol {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flexWrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexOn {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flexOff {
  -webkit-box-flex: 0 0 auto;
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flexJustifyEnd {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

.flexJustifyStart {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

.flexJustifyCenter {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flexJustifySpaceBetween {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.flexJustifySpaceAround {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

.flexAlignItemsStart {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flexAlignItemsCenter {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.flexAlignItemsEnd {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flexAlignContentStart {
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
}

.flexAlignContentCenter {
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
}

.flexAlignContentEnd {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
}

.flexAlignContentSpaceBetween {
  -webkit-align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
  align-content: space-between;
}

.flexAlignContentSpaceAround {
  -webkit-align-content: space-around;
  -moz-align-content: space-around;
  -ms-align-content: space-around;
  align-content: space-around;
}

.fullWidth {
  width: 100%;
  max-width: 100%;
}

.fullHeight {
  height: 100%;
}

/* use flexInitial in conjunction with flexAuto. flexInitial won't stretch to take up additional space. flexAuto will */
.flexInitial {
  flex: initial; /* equiv of 0 1 auto */
  min-height: 0;
}

.flexAuto {
  flex: auto; /* equiv of 0 1 auto */
  min-height: 0;
}

.grid {
  display: grid;
}

/* https://stackoverflow.com/questions/59053601/adapt-parent-to-maximum-size-of-its-children-in-css */
.stackParent {
  position: relative;
  height: max-content;
  width: max-content;
  display: grid;
}

.stackChild {
  grid-column: 1/-1;
  grid-row: 1;
}

.relPos {
  position: relative;
}

html, body {
  padding: 0;
  margin: 0;
}

body, option {
  font-family: "Lucida Sans", Helvetica, sans-serif;
  font-size: 14px;
  background-color: var(--mreq-body-bg-color);
}

.hide {
  display: none;
}

.bold {
  font-weight: 900;
  font-size: 24px;
  font-style: italic;
  color: white;
  background-color: black;
  padding-left: 6px;
  padding-right: 6px;
}

#rwdMain {
  grid-template-rows: repeat(4, min-content);
  grid-template-columns: min-content;
  height: 100%;
}

.social-buttons {
  margin: 1em;
  padding-inline-start: 0;
  row-gap: 1em;
  max-width: 470px;
}
.social-buttons > li {
  list-style-type: none;
  padding-inline-end: 1em;
}
.social-buttons > li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-inline-end: 0.66em;
  padding-top: 4px;
  padding-bottom: 4px;
}
.social-buttons > li a:hover,
.social-buttons > li a:focus {
  text-decoration: underline;
}
.social-buttons > li a#menuLink1 {
  text-decoration: none;
}
.social-buttons > li .label {
  flex-grow: 1;
}

.dropdown-menu {
  background-color: rgba(55, 55, 55, 0.75);
}

.dropdown-item {
  color: var(--mreq-text-color);
  box-sizing: border-box;
}

a.dropdown-item {
  font-size: 16px;
  padding-inline: 2em;
  padding-top: 4px;
  padding-bottom: 2px;
  min-height: 2em;
}

.dropdown-toggle[aria-expanded=true] {
  background-color: rgba(55, 55, 55, 0.75);
}

.iconicLabeledLink {
  display: inline-block;
  color: var(--mreq-text-color);
  text-align: start;
  background-color: rgba(255, 255, 255, 0);
}
.iconicLabeledLink svg {
  fill: var(--mreq-text-color);
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.iconicLabeledLink:hover {
  background-color: var(--mreq-text-hover-bg-color);
  color: var(--mreq-text-hover-color);
}
.iconicLabeledLink:hover img {
  filter: invert(1);
}

#link-contact .iconicLabeledLink svg {
  width: 48px;
  height: 48px;
  padding: 4px;
}

.label {
  font-size: 16px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 4px;
}

#boldName {
  display: inline-block;
  font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
  font-weight: 900;
  font-size: 36px;
  font-style: italic;
  color: white;
  background-color: black;
  padding: 8px;
  text-align: center;
}

.headshot img {
  padding-inline-start: 1em;
  max-width: calc(100vw - 2em);
}

.photocopyright {
  background-color: #444;
  color: #ccc;
  font-size: 12px;
  padding: 4px 4px 4px 8px;
}

/*
 Just for reference:
 iPhone 4 320x480
 iPhone 5 320x568
 iPhone 6 375x667
 iPhone 6+ 414x736
 */
@media screen and (min-height: 361px) {
  html, body {
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
  }
  .social-buttons {
    position: absolute;
    bottom: 1em;
  }
  .photocopyright {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-height: 380px) {
  #boldName {
    font-size: 24px;
  }
}
@media screen and (360px <= height < 400px) {
  #boldName {
    font-size: 26px;
  }
}
@media screen and (400px <= height < 420px) {
  #boldName {
    font-size: 28px;
  }
}
@media screen and (420px <= height < 440px) {
  #boldName {
    font-size: 30px;
  }
}
@media screen and (min-height: 440px) {
  #boldName {
    font-size: 32px;
  }
}
@media screen and (max-height: 460px) {
  .iconicLabeledLink svg {
    width: 40px;
    height: 40px;
  }
  #link-contact .iconicLabeledLink svg {
    width: 36px;
    height: 36px;
    padding: 3px;
  }
}
@media screen and (max-height: 450px) and (max-width: 320px) {
  .headshot img {
    position: absolute;
    left: unset;
    right: 0;
    top: -60px;
    z-index: -1;
    max-height: 150vh;
  }
}
@media only screen and (362px < height <= 900px) and (min-width: 720px) {
  .headshot img {
    position: absolute;
    top: 0;
    left: calc(300px - (100vh - 362px) * 0.5576208178);
    z-index: -1;
  }
}
@media only screen and (max-height: 362px) and (min-width: 720px) {
  .headshot img {
    position: absolute;
    top: 0;
    left: 300px;
    z-index: -1;
  }
}

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