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