.ims-banner {
  position: relative;
  width: 100%;
  height: 800px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #545456;
}
.ims-banner__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ims-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ims-banner__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ims-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;
}
.ims-banner__text {
  width: 90%;
  max-width: 700px;
}
.ims-banner__title {
  font-weight: bold;
  color: #ffffff;
}
.ims-banner__description {
  width: 100%;
  max-width: 598px;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 36px;
  margin-top: 30px;
}
.ims-banner__button {
  margin-top: 40px;
  max-width: 320px;
}

.ims-capabilities {
  width: 100%;
  padding: 50px 0 70px;
}
.ims-capabilities__title {
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 30px;
}
.ims-capabilities__description {
  width: 90%;
  max-width: 1305px;
  margin: 0 auto;
  font-weight: 400;
  color: #1e293b;
  line-height: 24px;
  text-align: center;
  margin-bottom: 50px;
}
.ims-capabilities__content {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.ims-capabilities__left {
  width: 50%;
  max-width: 560px;
  flex-shrink: 0;
}
.ims-capabilities__image {
  width: 100%;
}
.ims-capabilities__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ims-capabilities__right {
  flex: 1;
}
.ims-capabilities__list {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.ims-capabilities__item-header {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: stretch;
  font-weight: 400;
  color: #1e293b;
  border-bottom: 1px solid #dddddd;
}
.ims-capabilities__item-header .ims-capabilities__item-title,
.ims-capabilities__item-header .ims-capabilities__item-description {
  font-weight: bold;
  font-size: 24px;
  color: #3b82f6;
}
.ims-capabilities__item {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: stretch;
  font-weight: 400;
  color: #1e293b;
  border-bottom: 1px solid #dddddd;
}
.ims-capabilities__item:last-child {
  border-bottom: none;
}
.ims-capabilities__item-title {
  min-width: 280px;
  padding: 0px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 18px;
  color: #1e293b;
  text-align: left;
  border-right: 1px solid #dddddd;
  display: flex;
  align-items: center;
}
.ims-capabilities__item-description {
  padding: 25px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 18px;
  color: #3b82f6;
  line-height: 24px;
  text-align: left;
}
.ims-capabilities__button {
  margin-top: 60px;
  max-width: 320px;
}

.ims-advantage {
  width: 100%;
  padding: 70px 0;
  background: #f8f8f8;
}
.ims-advantage__title {
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}
.ims-advantage__content {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 70px;
}
.ims-advantage__left {
  width: 55%;
  max-width: 840px;
  flex-shrink: 0;
  position: relative;
}
.ims-advantage__image {
  width: 100%;
  margin-top: 80px;
}
.ims-advantage__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ims-advantage__stats-list {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  background: #3b82f6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px;
  box-sizing: border-box;
}
.ims-advantage__stats-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.ims-advantage__stats-item::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 1px;
  height: 110px;
  background: #cccccc;
}
.ims-advantage__stats-item:last-child::before {
  display: none;
}
.ims-advantage__stats-number {
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
}
.ims-advantage__stats-title {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
}
.ims-advantage__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ims-advantage__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ims-advantage__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.ims-advantage__info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ims-advantage__info-item img {
  width: 32px;
  height: auto;
  object-fit: contain;
}
.ims-advantage__info-item-title {
  font-weight: bold;
  font-size: 20px;
  color: #1e293b;
}

.ims-materials {
  width: 100%;
  padding: 70px 0;
}
.ims-materials__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.ims-materials__title {
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 50px;
}
.ims-materials__wrap {
  width: 100%;
}
.ims-materials__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.ims-materials__group {
  width: calc(100% / 2 - 15px);
  background: #f8f8f8;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ims-materials__group-title {
  font-weight: bold;
  font-size: 24px;
  color: #3b82f6;
  text-align: left;
}
.ims-materials__group-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ims-materials__item {
  width: calc(100% / 3 - 7px);
  max-width: 250px;
  background: #ffffff;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  color: #1e293b;
  text-align: center;
  padding: 8px 15px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ims-materials__item:hover,
.ims-materials__item.is-active {
  background: #3b82f6;
  color: #ffffff;
}
.ims-materials__details-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ims-materials__details-item {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}
.ims-materials__details-item.is-active {
  display: flex;
}
.ims-materials__details-text {
  flex: 1;
  padding: 10px 0px 10px;
}
.ims-materials__details-title {
  font-weight: bold;
  font-size: 18px;
  color: #1e293b;
  text-align: left;
  margin-bottom: 15px;
}
.ims-materials__details-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
}
.ims-materials__images-list {
  width: calc(100% / 2 - 15px);
}
.ims-materials__images-item {
  width: 100%;
  max-width: 690px;
  display: none;
  flex-shrink: 0;
}
.ims-materials__images-item.is-active {
  display: flex;
}
.ims-materials__images-image {
  width: 100%;
  max-width: 690px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ims-materials__images-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ims-materials__link {
  width: 100%;
  max-width: 380px;
  height: 50px;
  line-height: 50px;
  background: #3b82f6;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  margin: 50px auto 0;
  display: block;
}
.ims-materials__link:hover {
  background: #3b82f6;
  color: #ffffff;
}

.ims-finish {
  width: 100%;
  padding: 70px 0 100px;
  box-sizing: border-box;
  position: relative;
  background: #201d1b;
  overflow: hidden;
}
.ims-finish__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ims-finish__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ims-finish__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ims-finish__title {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
.ims-finish__list {
  width: 100%;
  background: #ffffff;
}
.ims-finish__item-header {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: stretch;
  font-weight: 400;
  color: #1e293b;
  border-bottom: 1px solid #dddddd;
}
.ims-finish__item-header .ims-finish__item-title,
.ims-finish__item-header .ims-finish__item-description {
  font-weight: bold;
  font-size: 18px;
  color: #3b82f6;
}
.ims-finish__item-header .ims-finish__item-description {
  justify-content: center;
}
.ims-finish__item {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: stretch;
  font-weight: 400;
  color: #1e293b;
  border-bottom: 1px solid #dddddd;
}
.ims-finish__item:last-child {
  border-bottom: none;
}
.ims-finish__item-title {
  min-width: 280px;
  padding: 0px 20px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 18px;
  color: #1e293b;
  text-align: left;
  border-right: 1px solid #dddddd;
  display: flex;
  align-items: center;
}
.ims-finish__item-description {
  min-width: 280px;
  padding: 25px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 18px;
  color: #1e293b;
  line-height: 24px;
  text-align: left;
  border-right: 1px solid #dddddd;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ims-finish__item-description:nth-child(2) {
  justify-content: center;
}
.ims-finish__item-description:last-child {
  border-right: none;
}
.ims-finish__item-description span {
  display: none;
}

@media screen and (max-width: 760px) {
  .ims-banner {
    height: auto;
  }
  .ims-banner__content {
    justify-content: flex-start;
  }
  .ims-banner__text {
    width: 100%;
  }

  .ims-capabilities__content {
    flex-direction: column;
    gap: 20px;
  }
  .ims-capabilities__left {
    width: 100%;
  }
  .ims-capabilities__item-header {
    flex-direction: column;
  }
  .ims-capabilities__item-header .ims-capabilities__item-title {
    padding-bottom: 20px;
  }
  .ims-capabilities__item-header .ims-capabilities__item-description {
    display: none;
  }
  .ims-capabilities__item {
    flex-direction: column;
  }
  .ims-capabilities__item-title {
    min-width: auto;
    border-color: #ffffff;
    padding-top: 20px;
  }
  .ims-capabilities__item-description {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .ims-advantage__content {
    flex-direction: column;
    gap: 20px;
  }
  .ims-advantage__left {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .ims-advantage__image {
    margin-top: 0px;
  }
  .ims-advantage__stats-list {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: static;
    transform: none;
  }
  .ims-advantage__stats-item::before {
    display: none;
  }
  .ims-advantage__stats-item {
    width: calc(100% / 2 - 5px);
  }
  .ims-advantage__info {
    margin-top: 0px;
  }

  .ims-materials__list {
    flex-direction: column;
  }
  .ims-materials__group {
    width: 100%;
  }
  .ims-materials__group-items {
    display: flex;
  }
  .ims-materials__images-list {
    width: 100%;
  }
  .ims-materials__item {
    width: auto;
  }

  .ims-finish__item-header {
    display: none;
  }
  .ims-finish__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 35px 25px;
    box-sizing: border-box;
  }
  .ims-finish__item-title {
    min-width: auto;
    border: none;
    padding: 0;
  }
  .ims-finish__item-description {
    min-width: auto;
    border: none;
    padding: 0;
    gap: 8px;
  }
  .ims-finish__item-description:last-child {
    display: block;
  }
  .ims-finish__item-description span {
    display: flex;
    color: #3b82f6;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .ims-banner {
    height: auto;
  }
  .ims-banner__content {
    justify-content: flex-start;
  }
  .ims-banner__text {
    width: 100%;
  }

  .ims-capabilities__content {
    flex-direction: column;
    gap: 20px;
  }
  .ims-capabilities__left {
    width: 100%;
  }

  .ims-advantage__content {
    flex-direction: column;
    gap: 20px;
  }
  .ims-advantage__left {
    width: 100%;
  }
  .ims-advantage__info {
    margin-top: 0px;
  }

  .ims-materials__list {
    flex-direction: column;
  }
  .ims-materials__group {
    width: 100%;
  }
  .ims-materials__group-items {
    display: flex;
  }
  .ims-materials__images-list {
    width: 100%;
  }
  .ims-materials__item {
    width: auto;
  }

  .ims-finish__item-title {
    min-width: auto;
    width: 120px;
    font-size: 16px;
  }
  .ims-finish__item-description {
    min-width: auto;
    font-size: 16px;
  }
  .ims-finish__item-description:nth-child(2) {
    width: 120px;
  }
  .ims-finish__item-description:nth-child(3) {
    width: 200px;
  }
  .ims-finish__item-description:nth-child(4) {
    flex: 1;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .ims-capabilities__content {
    flex-direction: column;
    gap: 20px;
  }
  .ims-capabilities__left {
    width: 100%;
  }

  .ims-materials__list {
    flex-direction: column;
  }
  .ims-materials__group {
    width: 100%;
  }
  .ims-materials__group-items {
    display: flex;
  }
  .ims-materials__images-list {
    width: 100%;
  }

  .ims-finish__item-title {
    min-width: 210px;
  }
  .ims-finish__item-description {
    min-width: 210px;
  }
}

@media screen and (min-width: 1350px) and (max-width: 1900px) {
}
