<style>
.static-solution-case-study {
  width: 100%;
  margin: 0 auto;
}

.static-solution-case-study .slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  height: 690px;
  overflow: hidden;
  border-radius: 10px;
  gap: 64px;
  padding: 32px;
}

.solution-case-study-text,
.solution-case-study-image {
  flex: 0 0 50%;
}

.solution-case-study-bg {
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-width: 648px;
}

.solution-case-study-text {
  min-width: 648px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  padding-top: 27px;
  padding-bottom: 13px;
}

.solution-case-study-image {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  min-width: 0;
  max-width: 648px;
  min-height: 0;
  height: 100%;
}

.solution-case-study-title h5 {
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  color: white !important;
  margin-bottom: 0 !important;
}

.solution-case-study-titles {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.solution-case-study-content h5 {
  font-size: 17px !important;
  line-height: 1.3 !important;
  font-weight: 300 !important;
  color: white !important;
}

.home-solution-case-study-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 20px;
  cursor: pointer;
}

.home-solution-case-study-button .icon-wrapper {
  background-color: #007bff;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-solution-case-study-button i,
.home-solution-case-study-button svg {
  color: #fff !important;
  font-size: 16px;
  transition: color 0.3s ease, fill 0.3s ease;
}

.home-solution-case-study-button .button-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  color: white;
}

.home-solution-case-study-button .icon-wrapper svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  color: inherit;
}

.hs_cos_wrapper_type_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-solution-case-study-button:hover .button-text {
  color: #0029f9;
}

.home-solution-case-study-button:hover .icon-wrapper {
  background-color: #9b51e0;
}

.home-solution-case-study-button:hover i,
.home-solution-case-study-button:hover svg {
  color: #0029f9 !important;
  fill: #ffffff;
}

@media (min-width: 900px) and (max-width: 1400px) {
  .static-solution-case-study .slide {
    flex-direction: row;
    align-items: stretch;
    height: auto;
    padding: 40px;
    gap: 40px;
  }

  .solution-case-study-text,
  .solution-case-study-image {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
  }

  .solution-case-study-text {
    min-width: 0 !important;
    padding: 20px;
  }

  .solution-case-study-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solution-case-study-bg {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 900px) {
  .static-solution-case-study .slide {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .solution-case-study-text,
  .solution-case-study-image {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .solution-case-study-text {
    order: 1;
    padding: 0 15px;
    text-align: left;
  }

  .solution-case-study-image {
    order: 2;
    height: auto;
  }

  .solution-case-study-bg {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .solution-case-study-text,
  .solution-case-study-image {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .solution-case-study-bg {
    height: 250px;
  }

  .static-solution-case-study .slide {
    padding-left: 0;
    padding-right: 0;
  }
}
</style>