.image-section {
  max-width: 1920px;
  margin: 160px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.image-wrap {
  max-width: 890px;
  width: 100%;
  aspect-ratio: 890/323;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-header {
  text-transform: uppercase;
  margin: 64px 0 24px;
  text-align: center;
}

.image-text {
  font-family: Medium;
  line-height: 1.5;
  max-width: 600px;
  text-align: center;
  color: #7A7C83;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .image-section {
    padding: 0 16px;
    margin: 64px 0;
  }
  .image-header {
    text-transform: unset;
    margin: 32px 0 8px;
  }
  .image-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .btn-image {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
  .btn-image .brand-btn-icon {
    display: none;
  }
  .image-text {
    margin-bottom: 16px;
  }
}