body {
  background-color: #F8F8F8;
}

.breadcrumbs {
  color: white;
}

.page-wrap {
  max-width: 1484px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-wrap .h1 {
  color: white;
  margin-bottom: 32px;
}

.page-content {
  background-color: white;
  border-radius: 6px;
  padding-bottom: 50px;
  margin-bottom: 180px;
  box-shadow: 0 10px 25px -15px rgba(169, 176, 190, 0.2);
}

.bg-image {
  position: absolute;
  display: flex;
  aspect-ratio: 1920/565;
  z-index: -1;
  width: 100%;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}
.bg-image img {
  width: 100%;
  height: 100%;
  min-height: 565px;
  object-fit: cover;
}

.breadcrumbs {
  padding: 32px 0 56px;
}

.breadcrumbs-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb-slash {
  fill: white;
  width: 9px;
  height: 14px;
}

.breadcrumb-item .body {
  color: white;
  transition: ease 0.3s;
}
.breadcrumb-item .body:visited {
  color: white;
}
.breadcrumb-item .body:hover {
  color: #ffc527;
}

.breadcrumb-arrow {
  fill: white;
  width: 6px;
  height: 10px;
  min-width: 6px;
  display: none;
}

.page-section {
  padding: 0 96px;
  margin: 0 auto;
}

.page-section-desc {
  max-width: 800px;
  margin-top: 32px;
  line-height: 1.65;
}

.header-label {
  padding: 48px 0 0;
}
.header-label .h3 {
  padding: 8px 8px 8px 96px;
  width: 400px;
  display: flex;
  background-color: #ffc527;
}

.page-blocks {
  display: flex;
  gap: 96px;
  margin: 32px 0;
}

.page-block {
  padding-left: 50px;
  color: #494C54;
  width: 100%;
}
.page-block .body:last-child {
  margin-bottom: 0;
}

.page-block-title {
  color: black;
  position: relative;
  margin-bottom: 20px;
}
.page-block-title::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 4px;
  background-color: #ffc527;
  left: -50px;
  top: 10px;
}

.callout {
  position: relative;
  background-color: #64B499;
  border-radius: 12px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
  line-height: 1.65;
  overflow: hidden;
}
.callout svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
}

@media (max-width: 900px) {
  .page-blocks {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .page-wrap {
    padding: 0 16px;
  }
  .page-wrap .h1 {
    text-align: center;
    margin-bottom: 24px;
  }
  .breadcrumb-arrow {
    display: block;
  }
  .breadcrumb-item:last-child {
    display: none;
  }
  .breadcrumb-slash {
    display: none;
  }
  .breadcrumbs {
    padding: 16px 0 24px;
  }
  .page-content {
    border-radius: 3px;
    padding: 16px;
    margin-bottom: 56px;
  }
  .header-label {
    padding: 0;
    margin-left: -16px;
  }
  .header-label .h3 {
    width: 180px;
    padding-left: 16px;
  }
  .page-section {
    padding: 0;
  }
  .page-section-desc {
    margin: 24px 0 0;
  }
  .page-blocks {
    margin: 16px 0;
  }
  .page-block {
    padding-left: 28px;
  }
  .page-block-title {
    margin-bottom: 12px;
  }
  .page-block-title::before {
    width: 20px;
    left: -26px;
    top: 12px;
  }
  .page-blocks {
    gap: 16px;
  }
  .callout {
    margin: 32px -16px;
    border-radius: 0;
    overflow: hidden;
    padding: 32px 16px;
  }
  .callout svg {
    width: 400px;
    height: 400px;
    left: -20%;
  }
  .header-label-payment {
    margin-bottom: 32px;
  }
}