.is-hero {
  background-color: #fff3f6;
  height: 100vh;
  transition: all .5s cubic-bezier(.68, -.55, .265, 1.55);
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .is-hero {
    height: auto;
/*     min-height: 100svh;
    padding-top: 38rem; */
	padding-top: 90px;
	  padding-bottom: 100px;
  }
}
.hero-images-box {
  z-index: 1;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 36%;
  height: auto;
  margin-top: 2rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 12%;
  overflow: clip;
  transform: translate(0, -50%);
}

.hero-img {
  opacity: 0;
  width: 100%;
  transition: all .5s cubic-bezier(.68, -.55, .265, 1.55);
  position: absolute;
  transform: rotate(-90deg);
}

.hero-content {
  z-index: 2;
  padding: var(--padding--pading-l);
  background-color: var(--blue);
  flex-flow: column;
  width: 60%;
  margin-top: auto;
  display: flex;
  position: relative;
}

.h2-hero {
  color: var(--white);
  width: 65%;
  margin-top: 1rem;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.hero-tag-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap:wrap;
}

.hero-tag {
  padding: .3rem var(--padding--padding-s);
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: -.05rem;
  background-color: #0000;
  border-radius: 30px;
  font-size: 1rem;
}
.is-hero .h1 {
  color: var(--white);
  font-size: 5rem;
  font-weight: 400;
}
@media (max-width:900px) {
  .is-hero .h1 {
    font-size: 2rem;
  }
.hero-content {
  z-index: 2;
  padding: 40px 15px;
  background-color: var(--blue);
  flex-flow: column;
  width: 90%;
  margin-top: auto;
  display: flex;
  position: relative;
}
  .h2-hero {
  width: 80%;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}
}


@media (max-width: 991px) {
	.hero-images-box {
		z-index: 3;
		right: 5px;
		width: 20%;
		top: 38%;
	}
}
@media (max-width: 600px) {
	.hero-images-box {
		top: 45%;
		width: 150px;
	}
}
@media (max-width: 460px) {
	.hero-images-box {
		top: 53%;
		width: 130px;
	}
}