.case_studies {
  padding: 120px 0;
  background-color: #fff;
}
.case_studies h2 {
  color: #131032;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px; /* 138.889% */
  margin-bottom: 32px;
}
.case_studies .items_holder {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case_studies .items_holder .item {
  flex: 0 0 calc(33% - 12px);
  padding: 24px;
  border: 1px solid #c6c6cd;
  border-radius: 16px;
  text-align: center;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case_studies .items_holder .item:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), 0 -8px 8px 0 var(--Purple-80, #cfcafa) inset;
}
.case_studies .items_holder .item .img_holder {
  margin-bottom: 24px;
}
.case_studies .items_holder .item h3 {
  color: #131032;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 12px;
}
.case_studies .items_holder .item p {
  color: #131032;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.case_studies .items_holder .cta a {
  width: 100%;
  border: 2px solid #131032;
  border-radius: 10px;
  padding: 9px;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #131032;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 1280px) {
  .case_studies {
    padding: 80px 0;
  }
  .case_studies .items_holder .item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .case_studies {
    padding: 40px 0;
  }
  .case_studies h2 {
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 24px;
  }
  .case_studies .items_holder {
    gap: 24px;
  }
  .case_studies .items_holder .item {
    flex: 0 0 100%;
  }
}