.imm-banner {
  position: relative;
  width: 100%;
  height: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #545456;
}
.imm-banner__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.imm-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.imm-banner__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imm-banner__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.imm-banner__text {
  width: 90%;
  max-width: 700px;
}
.imm-banner__title {
  font-weight: bold;
  color: #ffffff;
}
.imm-banner__description {
  width: 100%;
  max-width: 598px;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 36px;
  margin-top: 30px;
}
.imm-banner__button {
  margin-top: 40px;
  max-width: 320px;
}

.imm-details {
  width: 100%;
  padding: 50px 0 70px;
}
.imm-details__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.imm-details__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.imm-details__item {
  width: calc(100% / 2 - 10px);
  display: flex;
  align-items: stretch;
  gap: 40px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 15px 15px 10px;
  box-sizing: border-box;
}
.imm-details__item-image {
  width: 40%;
  max-width: 250px;
  flex-shrink: 0;
}
.imm-details__item-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.imm-details__item-text {
  flex: 1;
  max-width: 326px;
  padding-top: 15px;
  box-sizing: border-box;
}
.imm-details__item-title {
  font-weight: bold;
  color: #1e293b;
  text-align: left;
  margin-bottom: 20px;
}
.imm-details__item-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .imm-banner {
    height: auto;
  }
  .imm-banner__content {
    justify-content: flex-start;
  }
  .imm-banner__text {
    width: 100%;
  }

  .imm-details__item {
    width: 100%;
    flex-direction: column;
    gap: 0px;
    padding: 20px 20px 25px;
  }
  .imm-details__item-image {
    width: 100%;
  }
  .imm-details__item-text {
    max-width: none;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .imm-banner {
    height: auto;
  }
  .imm-banner__content {
    justify-content: flex-start;
  }
  .imm-banner__text {
    width: 100%;
  }

  .imm-details__item {
    width: 100%;
  }
  .imm-details__item-text {
    max-width: none;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .imm-details__item {
    width: 100%;
  }
  .imm-details__item-text {
    max-width: none;
  }
}
