.absolute-gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #06060f 0%, #112452 100%);
}

.case_study__detailed_view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 100px 0px 60px 60px;
  column-gap: 42px;
}

.case_study__heading {
  color: var(--text-white, #fff);

  /* semibold/120 */
  font-family: Mont;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.case_study__subheading {
  color: var(--text-white, #fff);

  /* light/24 */
  font-family: Mont;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.case_study_details h3 {
  color: var(--text-white, #fff);

  /* bold/24 */
  font-family: Mont;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.case_study__detailed_text {
  color: var(--text-light-grey, #c5c5c5);

  /* light/18 */
  font-family: Mont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.client_quote {
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  padding: 0px 40px 92px 40px;
}

.client_quote h3 {
  color: var(--white);
  text-align: center;
  font-family: var(--font-family-Mont);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 44.006px;
  text-transform: uppercase;
}

.client_quote p {
  color: var(--white);
  text-align: center;
  font-family: var(--font-family-Mont);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 34.837px;
}

.animated_circle {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 0.5s ease-in-out;
}

.back-to-cases:is(:hover) .animated_circle {
  stroke-dashoffset: 0;
  stroke: #ffffff;
}

.back-to-cases:is(:hover) path {
  fill: #ffffff;
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

@media screen and (max-width: 768px) {
  .case_study__heading {
    font-size: 48px;
  }
  .case_study__subheading {
    font-size: 20px;
  }

  .case_study_details {
    padding-bottom: 60px;
  }
  .case_study_details h3 {
    font-size: 20px;
  }
  .case_study__detailed_text {
    font-size: 14px;
  }

  .case_study__detailed_view {
    grid-template-columns: unset;
    padding-left: 30px;
    padding-right: 30px;
  }
  .client_quote {
    height: 100vh;
    padding: 0 20px 20px;
    position: relative;
  }
    .client_quote::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #00000069;
    }
  .client_quote h3 {
    font-size: 24px;
  }
  .client_quote p {
    font-size: 14px;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    line-height: 175%
  }
  .case_study_details .csdle{ align-items: center !important;}
}
