.cs-hero {
  padding: 50px 0 30px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(360deg, rgba(114, 136, 196, 0.75) 11.69%, #a3b9e0 34.61%, #bcd1ed 57.54%, #d4e9fb 85.56%);
}
.cs-hero .container {
  max-width: 1290px;
}
.cs-hero__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font: 400 13px "Roboto", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.cs-hero__breadcrumbs a {
  color: #473089;
  text-decoration: none;
}
.cs-hero__breadcrumbs a:hover {
  text-decoration: underline;
}
.cs-hero__breadcrumbs .cs-hero__sep {
  color: #9EA2AC;
}
.cs-hero__breadcrumbs .cs-hero__current {
  color: #363636;
  font-weight: 500;
}
.cs-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.cs-hero__content {
  flex: 1.2;
  max-width: 645px;
}
.cs-hero__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #363636;
  margin-bottom: 0px;
}
.cs-hero__title sup {
  font-size: 0.4em;
  top: -0.8em;
}
.cs-hero__desc {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  color: #363636;
  margin-bottom: 30px;
}
.cs-hero__btn {
  background: #4b32a2;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 50px 12px 15px;
  border-radius: 0 25px 0 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.3s ease;
}
.cs-hero__btn:hover {
  background: #3a2680;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 50, 162, 0.3);
}
.cs-hero__media {
  flex: 1;
  width: 100%;
  max-width: 590px;
  aspect-ratio: 590/410;
}
.cs-hero__img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}
@media (max-width: 1023px) {
  .cs-hero {
    padding: 94px 0 25px;
  }
  .cs-hero__inner {
    flex-direction: column;
    text-align: left;
    gap: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .cs-hero__title {
    font-size: 40px;
    font-weight: 500;
  }
}