@import '../fonts/degular/stylesheet.css';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #000;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  background: #FFFBF7;
}
@media only screen and (max-width: 1080px) {
  body {
    font-size: 15px;
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  7% {
    transform: rotate(-5deg);
  }
  15% {
    transform: rotate(7deg);
  }
  22% {
    transform: rotate(-2deg);
  }
  30% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.wiggle {
  animation-name: wiggle;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

pre {
  font: inherit;
}

/* atoms */
a, .link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dotted;
  cursor: pointer;
}

hr {
  border: 0;
  border-top: 1.5px solid #000;
  margin: 0;
}

.h2 {
  font-size: 43px;
  font-family: "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  font-weight: 700;
}

.h3 {
  font-size: 32px;
  font-family: "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1080px) {
  .h3 {
    font-size: 26px;
  }
}

.t-light {
  color: rgba(0, 0, 0, 0.6);
}

.t-small {
  font-size: 14px;
}

.t-thin {
  font-weight: 400;
}

.t-spaced {
  line-height: 1.3;
}

.t-center {
  text-align: center;
}

.t-red {
  color: #E9674D;
}

.t-err,
.t-success {
  padding: 8px 12px;
  background: #E9674D;
  color: #fff;
  font-size: 14px;
}

.t-success {
  background: #89CE68;
}

.gapXXL {
  margin-bottom: 154px;
}

.gapXL {
  margin-bottom: 100px;
}

.gapL {
  margin-bottom: 54px;
}

.gapM {
  margin-bottom: 32px;
}

.gapS {
  margin-bottom: 20px;
}

.gapXS {
  margin-bottom: 12px;
}

.gapXXS {
  margin-bottom: 4px;
}

@media only screen and (max-width: 1080px) {
  .gapXXL {
    margin-bottom: 100px;
  }
  .gapXL {
    margin-bottom: 60px;
  }
  .gapL {
    margin-bottom: 40px;
  }
  .gapM {
    margin-bottom: 24px;
  }
  .gapS {
    margin-bottom: 16px;
  }
  .gapXS {
    margin-bottom: 8px;
  }
  .gapXXS {
    margin-bottom: 4px;
  }
}
.paddL {
  padding: 50px;
}

.paddM {
  padding: 30px;
}

.paddS {
  padding: 12px;
}

@media only screen and (max-width: 1080px) {
  .paddL {
    padding: 30px;
  }
  .paddM {
    padding: 22px;
  }
  .paddS {
    padding: 8px;
  }
}
.split {
  display: flex;
  align-items: stretch;
}

.split2 {
  width: 50%;
}

.split3 {
  width: 33.3%;
}

.splitLine {
  border-left: 1.5px solid #000;
  background: #000;
}

@media only screen and (max-width: 1080px) {
  .split {
    flex-direction: column;
  }
  .splitLine {
    border-left: 0;
    border-top: 1.5px solid #000;
  }
}
.disabled {
  pointer-events: none;
  opacity: 0.25;
}

em.funky {
  font-style: italic;
  font-family: "Playfair Display", serif, "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  font-weight: 600;
}

.tags {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 4px;
  flex-wrap: wrap;
}

.tag {
  border: 1.5px solid #000;
  background: #E9A944;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.tag.subtle {
  font-size: 4px 6px;
  background: #FFFBF7;
}

/* molecules */
/* buttons */
.btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  font: inherit;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border: 1.5px solid #000;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: #000;
}

.btn.big {
  font-size: 22px;
  height: 54px;
  padding: 0 32px;
}

.btn.secondary {
  background: transparent;
  color: #000;
}

.btn.secondary:hover {
  background: #000;
  color: #fff;
}

.btnGrp {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.btnGrp .btn {
  width: auto;
}

.btnGrp.apart {
  justify-content: space-between;
}

.btnGrp.right {
  justify-content: flex-end;
}

.btnGrp.center {
  justify-content: center;
}

@media only screen and (max-width: 1080px) {
  .btn {
    font-size: 15px;
    height: 32px;
    padding: 0 15px;
  }
  .btn.big {
    font-size: 18px;
    height: 48px;
    padding: 0 24px;
  }
}
/* fields */
label {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

label.checkboxLabel {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border: 1.5px solid #000;
  margin: 0;
  padding: 8px;
  background: #FFFBF7;
}

label:has(input[type=checkbox]:checked) {
  background: #E9A944;
}

label:has(input[type=checkbox]:disabled) {
  opacity: 0.5;
}

select, input[type=text], input[type=number], input[type=email], input[type=password], textarea, input[type=url] {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  border: 1.5px solid #000;
  -webkit-appearance: none;
  outline: none;
  background: none;
  background-color: #FFFBF7;
  width: 100%;
  max-width: 100%;
}

input[type=number] {
  max-width: 100px;
}

input[type=checkbox] {
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  background: transparent;
  border: 1.5px solid #000;
}
input[type=checkbox]:checked {
  background-image: url("../img/check-on.svg");
  background-size: 100% 100%;
}

select {
  background-image: url("../img/dropdownArrow.svg");
  background-position: center right;
  background-repeat: no-repeat;
}

/* core layout */
.main {
  background-color: #F7F0EB;
  background-image: url(../img/grid.svg);
  background-position: center -21px;
  overflow: hidden;
}

.headerOuter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: stretch;
  align-items: center;
  z-index: 100;
  transition: 0.2s;
}

.headerOuter, .headerSpacer {
  height: 83px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.headerOuter.scrolled .header {
  padding: 6px;
  padding-left: 16px;
  border: 1.5px solid #000;
  background: #FFFBF7;
}
@media only screen and (max-width: 1080px) {
  .headerOuter.scrolled .header {
    padding-left: 10px;
    padding-right: 16px;
  }
}

.logo {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 28px;
}

.logo h1 {
  font-size: 26px;
  font-weight: 700;
  font-family: "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
}
@media only screen and (max-width: 500px) {
  .logo h1 {
    display: none;
  }
}

.nav, .navMain {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.nav a:not(.btn):hover {
  opacity: 0.5;
}

.nav a.active {
  opacity: 0.4;
}

.navToggle {
  display: none;
}

@media only screen and (max-width: 1080px) {
  .navMain {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 14px;
    font-size: 18px;
    right: 0;
    background: #FFFBF7;
    flex-direction: column;
    padding: 20px;
    padding-left: 40px;
    row-gap: 20px;
    border: 1.5px solid #000;
    z-index: 1;
    align-items: flex-end;
  }
  .navMain.active {
    display: flex;
  }
  .navToggle {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url(../img/navToggle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    flex-shrink: 0;
  }
}
.content {
  width: 100%;
  max-width: 1422px;
  margin: 0 auto;
  padding: 0 80px;
}
@media only screen and (max-width: 1080px) {
  .content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 800px) {
  .content {
    padding: 0 20px;
  }
}

.content.tiny {
  max-width: 582px;
}

.card {
  border: 1.5px solid #000;
  background: #FFFBF7;
}

.footer {
  border-top: 1.5px solid #000;
  background: #FFFBF7;
}

.footerInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  width: 200px;
}

.content {
  width: 100%;
  max-width: 1422px;
  margin: 0 auto;
  padding: 0 80px;
}
@media only screen and (max-width: 1080px) {
  .content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 800px) {
  .content {
    padding: 0 20px;
  }
}

.content.tiny {
  max-width: 582px;
}

.card {
  border: 1.5px solid #000;
  background: #FFFBF7;
}

.footer {
  border-top: 1.5px solid #000;
  background: #FFFBF7;
}

.footerInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 16px;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}

/* feature specific elements and one-offs */
/* hero */
.heroDecorations {
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  top: -100px;
  left: -40px;
  right: -40px;
  bottom: -100px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.heroDecorations img {
  width: 100%;
  height: auto;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.heroTitle {
  font-size: 86px;
  font-family: "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  line-height: 1.1;
  font-weight: 700;
}
.heroTitle em {
  font-style: italic;
  font-family: "Playfair Display", serif, "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  font-size: 82px;
  font-weight: 600;
  letter-spacing: -2px;
}
.heroTitle .t-ring {
  border: 1.5px solid #000;
  border-radius: 120px;
  line-height: 0.95;
  padding: 0 25px;
  padding-bottom: 10px;
  display: inline-block;
  background-image: url(../img/noise.png);
  background-size: cover;
  background-color: #c6d898;
}

.heroDesc {
  font-family: "Degular", "Inter Tight", system-ui, -apple-system, helvetica, arial, sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-size: 42px;
}

@media only screen and (max-width: 1080px) {
  .heroTitle {
    font-size: 60px;
  }
  .heroTitle em {
    font-size: 56px;
  }
  .heroDesc {
    font-size: 26px;
  }
}
@media only screen and (max-width: 800px) {
  .heroTitle {
    font-size: 40px;
  }
  .heroTitle em {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .heroTitle .t-ring {
    padding: 0 15px;
    padding-bottom: 5px;
  }
  .heroDesc {
    font-size: 22px;
  }
}
.emailCta {
  max-width: 674px;
  margin: 0 auto;
  position: relative;
}

.emailCta input {
  font-size: 22px;
  height: 70px;
  padding: 0 25px;
  padding-right: 240px;
}

.emailCta button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: auto;
}

@media only screen and (max-width: 1080px) {
  .emailCta input {
    padding: 0 15px;
    padding-right: 0;
    font-size: 18px;
    height: 48px;
  }
  .emailCta button {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 8px;
    width: 100%;
  }
}
/* listing grid */
.listingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 42px;
       column-gap: 42px;
  row-gap: 42px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 1080px) {
  .listingGrid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .listingGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.listingThumb {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.categoryIcon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #000;
}

.avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-image: url(../img/defaultAvatar.jpg);
  background-size: cover;
  background-position: center;
  background-color: #ccc;
  border: 1.5px solid #000;
  border-radius: 50%;
}

/* listing page */
.listingSide {
  max-width: 419px;
  flex-grow: 1;
  flex-shrink: 0;
}
@media only screen and (max-width: 1080px) {
  .listingSide {
    max-width: 100%;
  }
}

.listingSide .listingThumb {
  border: 0;
}

.listingAttributes {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.listingAttr {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 6px;
       column-gap: 6px;
}

.listingAttr img {
  display: block;
  margin-top: -5px;
  margin-left: -5px;
}

.manageListingBar {
  background: #89CE68;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manageListingBar.inactive {
  background: #E9674D;
}

.listingMain {
  position: relative;
  flex-grow: 1;
}

.listingMain pre {
  width: 100%;
  white-space: pre-wrap;
}

.applyForm {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFBF7;
  z-index: 1;
  visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 0;
  transition: 0.3s height;
}
@media only screen and (max-width: 1080px) {
  .applyForm {
    position: fixed;
    z-index: 100;
  }
}

.applyForm.active {
  height: 100%;
  visibility: visible;
}

.closeApplyForm {
  width: 24px;
  height: 24px;
  margin: -8px;
  background: url(../img/close.svg) center no-repeat;
}

.applySuccess {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media only screen and (max-width: 1080px) {
  .listingMain {
    min-height: 600px;
  }
}
/* post a listing */
.tagMatrix {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 8px;
}

.onboardLeft {
  display: flex;
  align-items: center;
  width: 100%;
}

.onboardRight {
  background: #D6C9F7;
  display: flex;
  align-items: center;
  width: 100%;
}

.onboardRightContent {
  text-align: center;
}

.sectionedForm section {
  display: none;
}

.sectionedForm section:first-of-type {
  display: block;
}

.sectionedForm.breakSections {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.sectionedForm.breakSections section {
  display: block;
}
.sectionedForm.breakSections .next {
  display: none;
}

/* manage listing */
.applicantsPanel {
  display: flex;
  flex-direction: column;
}

.applicantsMain {
  flex-grow: 1;
}

.lockedApplicantIcons {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 4px;
  flex-wrap: wrap;
}

.lockedApplicantIcons img {
  border-radius: 50%;
}

/* why */
.whyBlurb {
  max-width: 740px;
  margin: 0 auto;
  margin-top: 36vh;
  font-size: 50px;
  line-height: 1.4;
}

.whyBlurb p {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1080px) {
  .whyBlurb {
    font-size: 40px;
  }
}
@media only screen and (max-width: 800px) {
  .whyBlurb {
    font-size: 30px;
  }
}
/* view applicants */
.applicantList {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.applicantThumbTop {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.applicantThumbTop .avatar {
  width: 70px;
  height: 70px;
}

.applicantThumbLinks {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.applicantThumbLinks a {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
  text-decoration: none;
}

.applicantThumbLinks img {
  width: 22px;
}/*# sourceMappingURL=masterminder.css.map */