.c-hero {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #FCF8FB;
  position: relative;
}
@media (min-width: 992px) {
  .c-hero {
    gap: 100px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.c-hero::after {
  background-color: #FCF8FB;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
.c-hero__first-area {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  order: 2;
}
@media (min-width: 992px) {
  .c-hero__first-area {
    padding: 168px 0px;
    padding: 10.5rem 0;
    margin-bottom: 0px;
    margin-bottom: 0;
    max-width: 800px;
    order: 1;
  }
}
.c-hero__second-area {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  order: 1;
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (min-width: 992px) {
  .c-hero__second-area {
    margin-bottom: 0px;
    margin-bottom: 0;
    order: 2;
    max-width: 892px;
  }
}
@media (min-width: 768px) {
  .c-hero {
    flex-direction: row;
  }
}
.c-hero__title {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 33px;
  line-height: 2.0625rem;
  font-family: "Outfit", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-weight: 700;
  max-width: 450px;
  position: relative;
}
@media (min-width: 1200px) {
  .c-hero__title {
    margin: 48px 0px;
    margin: 3rem 0;
    font-size: 64px;
    font-size: 4rem;
    line-height: 110%;
    max-width: 700px;
    font-style: normal;
    font-weight: 600;
  }
}
.c-hero__title .field--name-field-title {
  text-indent: 20px;
}
@media (min-width: 1200px) {
  .c-hero__title .field--name-field-title {
    text-indent: 30px;
  }
}
.c-hero__title svg {
  position: absolute;
  top: 1px;
  margin-left: -5px;
  max-height: 26px;
}
@media (min-width: 1200px) {
  .c-hero__title svg {
    top: 2px;
    max-height: 55px;
  }
}
.c-hero__body {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 25px;
  line-height: 1.5625rem;
  max-width: 550px;
}
@media (min-width: 1200px) {
  .c-hero__body {
    margin-bottom: 48px;
    margin-bottom: 3rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.875rem;
    max-width: 760px;
  }
}
.c-hero__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 410px; /* Adjust height as needed */
}
.c-hero__slider div {
  height: 100%;
}
.c-hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(image-mask.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-hero__slider img {
  padding-left: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.c-hero__slider img.active {
  opacity: 1;
}
.c-hero__slider .field--name-field-image > div:nth-child(1) img {
  opacity: 1;
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(156, 36, 138);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(156, 36, 138);
  }
}
.c-hero .svg-hero-1 {
  -webkit-animation: animate-svg-fill-1 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s both;
  animation: animate-svg-fill-1 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s both;
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(91, 64, 153);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(91, 64, 153);
  }
}
.c-hero .svg-hero-2 {
  -webkit-animation: animate-svg-fill-2 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.1s both;
  animation: animate-svg-fill-2 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.1s both;
}
