@import url(main.css);

li {
  list-style: none;
}

.career-content {
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  display: grid;
}

.careers {
  background: var(--white);
  max-width: 95ch;
  padding: 30px;
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 4vmax 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.12),
    0 4px 4px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.12),
    0 16px 16px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@-webkit-keyframes smooth-show  {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}

@keyframes smooth-show {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}

.job__checkbox {
  display: none;
}

.job__checkbox:checked ~ .job__desc {
  display: block;
}

.job__desc {
  padding: 0rem 2rem;
  display: none;
  -webkit-animation-name: smooth-show;
  animation-name: smooth-show;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.job__title {
  background-color: var(--light);
  padding: 1rem;
  margin: 1rem 0;
  position: relative;
  font-weight: bolder;
}

.job__title::before {
  content: "+";
  position: absolute;
  right: 1rem;
  color: var(--dark-50);
}

.job__title:hover {
  background-color: var(--primary);
  color: var(--light);
}

.job__title:hover::before {
  color: var(--light);
}

.job__title h3 {
  margin-bottom: 0.3rem;
}

.job__title h5 {
  font-weight: 800;
}

.job__title h5 b {
  font-weight: 800;
}

p small {
  font-weight: bolder;
}
