.services li{
  color: var(--Brand-Black, #161819);
  font-family: "Roboto Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  text-transform: uppercase;
  border-bottom: 1px solid black;
}

.services h2{
  font-family: 'Roboto Mono';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #090B0D;
}

.case-study-text h1{
  font-family: "Roboto Mono";
}

.case-study-text h1 span{
  font-family: 'Plus Jakarta Sans';
  font-size: 68px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 68px */
  color: #090B0D;
}

.case-study-text span {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  color: #090B0D;
  margin-bottom: 1rem;
  display: block;
}

.case-study-text p {
  margin-bottom: 1rem;
}

.case-study-text input[type="checkbox"] {
  appearance: none;
  display: block;
  height: 0px;
}

.case-study-text label:before {
  content: "READ MORE";
}
.case-study-text input[type="checkbox"]:checked ~ label:before {
  content: "READ LESS";
}

.case-study-text .extra:has(~ input[type="checkbox"]:checked) {
  display: inline;
}

.case-study-text .extra {
  display: none;
}

.case-study-text label {
  font-family: 'Roboto Mono';
  font-size: 20px;
  position: relative;
  color: #090B0D;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}

.case-study-text label:after{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  content: "";
  transform: scaleX(1);
  height: 1px;
  background-color: #000;
}

.case-study-text label:hover:after {
  transform: scaleX(.5);
  transition-property: transform;
}
@media screen and (max-width: 1000px) {
  .case-study-text h1 span {
    font-size: 36px;
  }
} 