.corporate-hero {
  background-image: linear-gradient(to top, #fff 1%, #fffbf7 51%, #dcdcff 100%);
  padding: 30px 0px;
}

@media only screen and (max-width: 600px) {
  .corporate-hero {
    padding: 10px 0px;
  }
}

.corporate-hero .corporate-hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 47px;
  padding: 65px 0px 60px 0px;
}

@media only screen and (max-width: 600px) {
  .corporate-hero .corporate-hero-text {
    padding: 65px 2% 30px 2%;
    gap: 25px;
  }
}

.corporate-hero .corporate-hero-text p {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.33;
  text-align: left;
  color: #000;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .corporate-hero .corporate-hero-text p {
    font-size: 35px;
    margin: 0;
  }
}

.corporate-hero .corporate-hero-text .detail {
  font-size: 32px;
  line-height: 1.56;
  text-align: center;
  color: #000;
}

@media only screen and (max-width: 600px) {
  .corporate-hero .corporate-hero-text .detail {
    font-size: 19px;
    max-width: 100%;
  }
}

.corporate-hero .corporate-hero-text .trust-signals {
  display: flex;
  gap: 24px;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals {
    gap: 18px;
  }
}

.corporate-hero .corporate-hero-text .trust-signals .trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals .trust-signal {
    font-size: 15px;
    white-space: nowrap;
    gap: 5px;
  }
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals .trust-signal:last-child {
    display: none;
  }
}

.corporate-hero .corporate-hero-text .trust-signals .trust-signal .icon  {
  width: 25px;
  height: 25px;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals .trust-signal .icon {
    width: 18px;
    height: 18px;
  }
}

.corporate-hero .corporate-hero-text .trust-signals .stars {
  display: flex;
  border-radius: 20px;
  background-color: rgba(0, 182, 122, 0.1);
  width: fit-content;
  padding: 2px 10px;
  gap: 4px;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals .stars {
    gap: 2px;
  }
}

.corporate-hero .corporate-hero-text .trust-signals .stars i.icon.urm-star_filled {
  background-color: #00b67a;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .corporate-hero-text .trust-signals .stars i.icon.urm-star_filled {
    width: 15px;
    height: 15px;
  }
}

.corporate-hero .animated-images-wrapper {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 780px) {
  .corporate-hero .animated-images-wrapper {
    margin-top: unset;
  }
}

.corporate-hero .animated-images-wrapper .animated-images {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 24px;
  gap: 24px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.corporate-hero .animated-images-wrapper .animated-images::-webkit-scrollbar {
  display: none;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer {
  display: flex;
  width: -moz-max-content;
  width: fit-content;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}


.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer.animated {
  animation: none;
  animation: slider linear infinite;
  animation-duration: 200s;
}

.corporate-hero .animated-images-wrapper .animated-images:hover .animated-images-outer {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group {
  display: grid;
  gap: 24px;
  min-width: 848px;
  grid-template-areas: "small1 big1" "small2 big1";
  grid-template-columns: auto 1fr;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container {
  grid-area: small1;
  position: relative;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container:nth-child(2) {
  grid-area: small2;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container:nth-child(3) {
  grid-area: big1;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container picture img {
  max-width: 320px;
  border-radius: 24px;
  aspect-ratio: 4/3;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container:nth-child(3) picture img {
  min-width: 100%;
  aspect-ratio: 1;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container .image_tsignal {
  position: absolute;
  top: 3%;
  left: 4%;
  padding: 7px 11px;
  border-radius: 24px;
  background-color: #d9cac5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container .image_tsignal .icon {
  width: 24px;
  height: 24px;
}

.corporate-hero .animated-images-wrapper .animated-images .animated-images-outer .image-group .image_container .image_tsignal span {
  font-size: 13px;
  font-weight: bold;
  color: #292e36;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 24px));
  }
}

@media screen and (min-width: 600px) {
  .corporate-hero .corporate-hero-text .detail {
     max-width: 60% !important;
  }
}

.corporate-hero .corporate-hero-text {
     gap:30px !important;
     padding: 65px 0px 50px 0px !important;
 }

@media only screen and (max-width: 600px) {
 .corporate-hero .corporate-hero-text {
     gap:24px;
 }
}
