.info-frame {
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem var(--padding-64);
  box-sizing: border-box;
  gap: 4rem;
}
.image-icon {
  flex: 1;
  position: relative;
  border-radius: 16px;
  max-width: 100%;
  overflow: hidden;
  max-height: 50%;
  object-fit: cover;

}
.content3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.content3,
.h14,
.text2 {
  align-self: stretch;
}
.text2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-24);
  text-align: left;
  font-size: var(--fs-36);
  color: var(--color-black);
  font-family: inherit;
}
.h14 {
  font-size: inherit;
  letter-spacing: -0.02em;
  line-height: 120%;
  font-weight: 700;
  font-family: inherit;
}
.fc,
.h14,
.h15 {
  margin: 0;
  position: relative;
}
.h15 {
  width: 100%;
  max-width: 100%;
  font-size: var(--fs-24);
  letter-spacing: -0.02em;
  line-height: 120%;
  font-weight: 700;
  font-family: inherit;
  display: none;
  align-items: center;
}
.fc {
  align-self: stretch;
  font-size: 1.563rem;
  line-height: 145%;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .info-frame {
    flex-direction: column;
    
  }
  .content3,
  .image-icon {
    flex: unset;
    align-self: stretch;
  }
  .h14 {
    display: none;
  }
  .h15 {
    display: block;
  }
  .fc {
    font-size: var(--fs-20);
  }
}
@media screen and (max-width: 420px) {
  .info-frame {
    flex-direction: column;
  }
  .content3,
  .image-icon {
    flex: unset;
    align-self: stretch;
  }
  .h15 {
    text-align: left;
  }
}
