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;
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  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-col {
  width: 100%;
}
.page-col:first-child {
  background-color: #ffc527;
}

.page-col-left {
  position: relative;
  padding: 48px 48px 56px;
}
.page-col-left .h1 {
  position: relative;
  z-index: 1;
  color: black;
  margin-bottom: 32px;
}

.page-col-left-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.addresses {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 600px;
}

.address {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 240px;
}
.address hr {
  margin: 20px 0;
  height: 4px;
  background-color: black;
  border: 0;
  width: 100%;
}

.address-box {
  display: flex;
  margin: 6px 0;
  gap: 8px;
  font-size: 18px;
  font-family: Play;
  line-height: 1.5;
}
.address-box svg {
  transform: translateY(4px);
}

.address-bg {
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 610px;
  height: 610px;
}

.col-message {
  position: relative;
  z-index: 1;
  background-color: black;
  color: white;
  text-align: center;
  padding: 32px 16px;
}

.page-col-right {
  padding: 48px 32px 24px;
}
.page-col-right .h3 {
  text-align: center;
}
.page-col-right .body {
  text-align: center;
  margin: 16px auto 24px;
  max-width: 400px;
  color: #494C54;
}

.page-form-wrap {
  max-width: 515px;
  margin: 0 auto;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.consent {
  margin: 16px auto 0;
  text-align: center;
  color: #494C54;
  max-width: 270px;
}

@media (max-width: 1200px) {
  .page-content {
    flex-direction: column;
  }
}
@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;
    margin-bottom: 56px;
  }
  .addresses {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .address-bg {
    display: none;
  }
  .page-col-left {
    padding: 16px 16px 32px;
  }
  .address {
    text-align: center;
    align-items: center;
    max-width: unset;
  }
  .address hr {
    margin: 16px 0;
  }
  .page-col-right {
    padding: 32px 16px;
  }
  .form-group {
    flex-direction: column;
    gap: 8px;
  }
  .form {
    gap: 8px;
  }
  .col-message p {
    margin: 0;
  }
}