html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

h1, h2, h3, h4, h5, strong, blockquote {
  font-weight: bold;
}

em {
  font-style: italic;
}

.text-headline, main .container .hero .texts .title h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 100%;
}
@media (min-width: 64rem) {
  .text-headline, main .container .hero .texts .title h1 {
    font-weight: 600;
    font-size: 5rem;
    line-height: 100%;
  }
}

.text-subtitle-1, footer .container .title, main .container .feed .posts .no-results h2, header .container .title, .job-item .content .intro .title h2 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 135%;
}
@media (min-width: 64rem) {
  .text-subtitle-1, footer .container .title, main .container .feed .posts .no-results h2, header .container .title, .job-item .content .intro .title h2 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 135%;
  }
}

.text-subtitle-2, main .container .feed .filters form .sections .section h2 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 135%;
}

.text-description, main .container .hero .texts .description {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 135%;
}
@media (min-width: 64rem) {
  .text-description, main .container .hero .texts .description {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 135%;
  }
}

.text-label-1, .button.medium {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;
}

.text-label-2, main .container .feed .filters form .sections .section .list li label, .job-item .content .intro .company, .link-button, .button.small {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
}

.text-label-2-emphasis, main .container .hero .texts .title .caption {
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
}

.text-label-3 {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
}

.text-caption, .job-item .content .intro .title date {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
}

.text-eyebrow, .job-item .content .options span {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.icon {
  background-color: #1c1212;
}
.icon.medium {
  width: 1.5rem;
  height: 1.5rem;
}
.icon.add {
  -webkit-mask: url("../img/icon-add.svg");
}

.button {
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  text-align: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 0;
}
.button.primary {
  background: #1c1212;
  color: white;
}
.button.primary:hover {
  background-color: #474747;
}
.button.primary .icon {
  background-color: white;
}
.button.secondary {
  border: 3px solid #474747;
  color: #1c1212;
}
.button.secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.button.medium {
  border-radius: 1rem;
  padding: 1rem;
  min-height: 3.5rem;
}
.button.small {
  border-radius: 0.75rem;
  padding: 0.75rem;
  min-height: 3rem;
}

.link-button {
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
  color: #1c1212;
  padding: 0.75rem;
  min-height: 3rem;
  border-radius: 0.75rem;
}
@media (hover: hover) {
  .link-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #701E8A;
  }
}

.job-item {
  display: flex;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  gap: 1.5rem;
  text-decoration: none;
  transition: background-color, box-shadow, 0.25s ease;
  align-items: center;
}
@media (hover: hover) {
  .job-item:hover {
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
}
.job-item .avatar {
  display: none;
}
@media (min-width: 64rem) {
  .job-item .avatar {
    display: block;
    min-width: 4.5rem;
    max-width: 4.5rem;
    aspect-ratio: 1/1;
    background: #F1F1F1;
    border-radius: 99rem;
    overflow: hidden;
  }
  .job-item .avatar.logo {
    position: relative;
  }
  .job-item .avatar.logo .shadow, .job-item .avatar.logo img {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .job-item .avatar.logo .shadow {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 99rem;
  }
}
.job-item .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.job-item .content .intro {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.job-item .content .intro .title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 64rem) {
  .job-item .content .intro .title {
    flex-direction: row;
    flex-flow: row-reverse;
  }
}
.job-item .content .intro .title h2 {
  color: #1c1212;
}
.job-item .content .intro .title date {
  color: #474747;
}
.job-item .content .intro .company {
  color: #474747;
}
.job-item .content .options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.job-item .content .options span {
  color: #3F0D4F;
  border-radius: 0.5rem;
  background: #F7EDFD;
  padding: 0.5rem;
}

:root {
  font-family: "Inter", sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

html, body {
  color: #1c1212;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 90rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 64rem) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

header {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
header .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
header .container .title {
  color: #3F0D4F;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
main .container .hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  main .container .hero {
    align-items: center;
  }
}
main .container .hero .texts {
  display: flex;
  align-items: center;
  max-width: 56.875rem;
  gap: 2rem;
  flex-direction: column;
  color: #3F0D4F;
}
@media (min-width: 64rem) {
  main .container .hero .texts {
    text-align: center;
  }
}
main .container .hero .texts .title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-flow: column;
}
main .container .hero .texts .title .caption {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 99rem;
  padding: 0.5rem 0.75rem;
  color: #701E8A;
  text-decoration: none;
}
main .container .hero .texts .title .caption:hover {
  text-decoration: underline;
}
main .container .hero .texts .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42.25rem;
  opacity: 85%;
}
main .container .feed {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  main .container .feed {
    padding-top: 5rem;
  }
}
main .container .feed .filters {
  display: none;
}
@media (min-width: 64rem) {
  main .container .feed .filters {
    display: block;
    grid-column: span 3;
  }
}
main .container .feed .filters form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  top: 2rem;
}
main .container .feed .filters form .sections {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main .container .feed .filters form .sections .section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main .container .feed .filters form .sections .section:last-child {
  border-bottom: none;
}
main .container .feed .filters form .sections .section h2 {
  margin-left: 1rem;
}
main .container .feed .filters form .sections .section .list li {
  display: flex;
  align-items: center;
}
main .container .feed .filters form .sections .section .list li:hover {
  background: rgba(0, 0, 0, 0.05);
}
main .container .feed .filters form .sections .section .list li input {
  margin-left: 1rem;
}
main .container .feed .filters form .sections .section .list li label {
  width: 100%;
  padding: 0.75rem 0.5rem;
}
main .container .feed .filters form .sections .section .list li label:hover {
  cursor: pointer;
}
main .container .feed .filters form .actions {
  display: flex;
  gap: 1rem;
}
main .container .feed .filters form .actions button, main .container .feed .filters form .actions a {
  width: 100%;
  justify-content: center;
}
main .container .feed .posts {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 64rem) {
  main .container .feed .posts {
    grid-column: span 9;
  }
}
main .container .feed .posts .no-results {
  height: 100%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main .container .feed .posts .no-results img {
  width: 5rem;
}
main .container .feed .posts .no-results a {
  color: #3F0D4F;
}
main .container .feed .posts .no-results a:hover {
  color: #932BB5;
}
main .container .feed .posts ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}
footer .container {
  padding: 2rem 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 64rem) {
  footer .container {
    text-align: left;
    padding: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .container .title {
  color: #3F0D4F;
}
footer .container .title a {
  color: #701E8A;
}
footer .container .title a:hover {
  color: #932BB5;
}

.loop-1, .loop-2 {
  position: absolute;
  z-index: 0;
}

.loop-1 {
  width: 736.3333333333px;
  top: -35%;
  left: -70%;
}
@media (min-width: 64rem) {
  .loop-1 {
    width: 1104.5px;
    top: -40%;
    left: -5%;
  }
}

.loop-2 {
  display: none;
}
@media (min-width: 64rem) {
  .loop-2 {
    display: block;
    width: 967px;
    right: -25%;
    top: -50%;
  }
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(#D8E9FF 0%, #F7EDFD 15%, #F7EDFD 45%, white 100%);
}
