@import "https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;700&display=swap";

*,
::before,
::after {
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-family: 'Roboto Slab', serif;
  background: linear-gradient(135deg, #FFFDFC 0%, #fef7f3 100%);
  color: #0B0502;
  font-size: 15px;
  line-height: 1.55;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

.hd_shell {
  background: linear-gradient(180deg, #fffdfcf7 0%, #fffdfceb 100%);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #e357051f;
  box-shadow: 2px 3px 4px 0 #0b05020d;
  padding: 24px 48px;
  position: relative
}

.hd_inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px
}

.brand_zone {
  display: flex;
  align-items: center;
  gap: 24px
}

.logo_hold {
  background: linear-gradient(135deg, #0B0502 0%, #2a1510 100%);
  padding: 8px;
  border-radius: 13px;
  box-shadow: 2px 5px 28px 0 #e357051a inset 0 1px 2px #fffdfc26;
  border: 1px solid #e3570533;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s ease-in-out
}

.logo_hold:hover {
  transform: translateY(-2px);
  box-shadow: 2px 12px 48px 0 #e357051f inset 0 1px 2px #fffdfc26
}

.logo_img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain
}

.brand_text {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  color: #0B0502;
  letter-spacing: -.02em;
  margin: 0
}

.nav_primary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.nav_link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #0B0502;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 7px;
  background: #e357050a;
  border: 1px solid #e3570526;
  position: relative;
  overflow: hidden;
  transition: background .27s ease-in-out, border-color .3s cubic-bezier(0.4, 0, 0.2, 1), transform .25s ease-in-out
}

.nav_link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E35705;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav_link:hover {
  background: #e3570514;
  border-color: #e357054d;
  transform: translateX(2px)
}

.nav_link:hover::before {
  width: 100%
}

.nav_link:focus-visible {
  outline: 2px solid #E35705;
  outline-offset: 2px
}

.accent_decor {
  position: absolute;
  top: -20px;
  right: 96px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 40%, #e3570514, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1
}

.accent_decor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #e3570526;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: translate(-50%, -50%) rotate(45deg)
}

.ft_shell {
  background: linear-gradient(180deg, #0B0502 0%, #1a0f0a 100%);
  color: #FFFDFC;
  padding: 48px 48px 24px;
  margin-top: 96px;
  border-top: 3px solid #E35705;
  box-shadow: inset 0 4px 12px #e3570514
}

.ft_inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e3570533
}

.ft_brand_zone {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ft_logo_hold {
  background: linear-gradient(135deg, #FFFDFC 0%, #f5e8df 100%);
  padding: 8px;
  border-radius: 13px;
  width: fit-content;
  box-shadow: 2px 5px 28px 0 #e357051a;
  border: 1px solid #e3570540
}

.ft_logo_img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain
}

.ft_desc {
  font-size: 15px;
  line-height: 1.75;
  color: #fffdfcd9;
  margin: 0;
  max-width: 380px
}

.ft_contact_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px
}

.contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #fffdfce6;
  text-decoration: none;
  transition: color .26s ease-in-out, transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_item:hover {
  color: #E35705;
  transform: translateX(4px)
}

.contact_item:focus-visible {
  outline: 2px solid #E35705;
  outline-offset: 2px;
  border-radius: 4px
}

.contact_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.contact_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor
}

.ft_nav_zone {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px
}

.ft_nav_col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft_nav_link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #fffdfccc;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color .3s cubic-bezier(0.4, 0, 0.2, 1), padding-left .32s ease-in-out
}

.ft_nav_link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px;
  background: #E35705;
  transition: width .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_nav_link:hover {
  color: #E35705;
  padding-left: 8px
}

.ft_nav_link:hover::before {
  width: 24px
}

.ft_nav_link:focus-visible {
  outline: 2px solid #E35705;
  outline-offset: 2px;
  border-radius: 4px
}

.ft_bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px
}

.copyright_text {
  font-size: 15px;
  line-height: 1.55;
  color: #fffdfc99;
  margin: 0
}

.ft_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: #e357051a;
  border: 1px solid #e357054d;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #E35705;
  box-shadow: inset 0 1px 3px #e3570526
}

.ft_badge_icon {
  width: 16px;
  height: 16px
}

.ft_badge_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor
}

@media (max-width: 1024px) {
  .hd_shell {
    padding: 24px
  }

  .hd_inner {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start
  }

  .brand_zone {
    width: 100%;
    justify-content: space-between
  }

  .nav_primary {
    width: 100%;
    justify-content: flex-start
  }

  .accent_decor {
    display: none
  }

  .ft_shell {
    padding: 48px 24px 24px;
    margin-top: 48px
  }

  .ft_inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ft_nav_zone {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ft_bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 640px) {
  .brand_text {
    font-size: 24px
  }

  .logo_hold {
    padding: 8px
  }

  .logo_img {
    width: 68px;
    height: 68px
  }

  .nav_primary {
    flex-direction: column;
    align-items: stretch;
    width: 100%
  }

  .nav_link {
    text-align: center
  }

  .ft_logo_img {
    width: 68px;
    height: 68px
  }

  .ft_desc {
    font-size: 15px
  }
}

.policy_content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #FFFDFC
}

.policy_content p {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  margin: 0 0 24px
}

.policy_content p:last-child {
  margin-bottom: 0
}

.policy_content ul,
.policy_content ol {
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.policy_content ul li,
.policy_content ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  margin: 0 0 8px
}

.policy_content ul li:last-child,
.policy_content ol li:last-child {
  margin-bottom: 0
}

.policy_content em,
.policy_content i {
  font-style: italic;
  color: #0B0502
}

.policy_content a {
  color: #E35705;
  text-decoration: none;
  position: relative;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy_content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #E35705;
  transition: width .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy_content a:hover::after {
  width: 100%
}

.policy_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 48px;
  background: #FFFDFC;
  box-shadow: 2px 3px 4px 0 #0b05020d;
  border-radius: 7px;
  overflow: hidden
}

.policy_content thead {
  background: #e357050f
}

.policy_content th {
  font-size: 15px;
  line-height: 1.55;
  color: #0B0502;
  text-align: left;
  padding: 24px;
  font-weight: 600;
  border-bottom: 2px solid #e3570526
}

.policy_content td {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  padding: 24px;
  border-bottom: 1px solid #0b050214
}

.policy_content tbody tr:last-child td {
  border-bottom: none
}

.policy_content tbody tr {
  transition: background .26s ease-in-out
}

.policy_content tbody tr:hover {
  background: #e3570508
}

@media (max-width: 768px) {
  .policy_content {
    padding: 48px 24px
  }

  .policy_content table {
    display: block;
    overflow-x: auto
  }

  .policy_content th,
  .policy_content td {
    padding: 8px;
    font-size: 15px
  }
}

.prm {
  max-width: 1500px;
  margin: 0 auto;
  background: #FFFDFC;
  color: #0B0502;
  overflow-x: clip
}

.prm_intro {
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.prm_intro_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.prm_intro_img_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
  overflow: hidden
}

.prm_intro_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.prm_intro_txt {
  position: relative
}

.prm_intro_label {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #E35705;
  margin: 0 0 24px
}

.prm_intro_h1 {
  font-size: 72px;
  line-height: 1.1;
  margin: 0 0 24px
}

.prm_intro_desc {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: justify
}

.prm_intro_dots {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  gap: 8px
}

.prm_intro_dot {
  width: 8px;
  height: 8px;
  background: #E35705;
  border-radius: 50%;
  opacity: .3;
  animation: prm_dot_pulse 2.8s ease-in-out infinite
}

.prm_intro_dot:nth-child(2) {
  animation-delay: .35s
}

.prm_intro_dot:nth-child(3) {
  animation-delay: .7s
}

@keyframes prm_dot_pulse {

  0%,
  100% {
    opacity: .3;
    transform: scale(1)
  }

  50% {
    opacity: .8;
    transform: scale(1.4)
  }
}

.prm_exp {
  padding: 96px 24px;
  background: linear-gradient(168deg, #FFFDFC 0%, #e357050a 100%);
  position: relative
}

.prm_exp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: #E35705
}

.prm_exp::after {
  content: '';
  position: absolute;
  top: -4px;
  left: calc(50% - 64px);
  width: 8px;
  height: 8px;
  background: #E35705;
  border-radius: 50%
}

.prm_exp_dot_end {
  position: absolute;
  top: -4px;
  left: calc(50% + 56px);
  width: 8px;
  height: 8px;
  background: #E35705;
  border-radius: 50%
}

.prm_exp_inner {
  max-width: 1100px;
  margin: 0 auto
}

.prm_exp_h {
  font-size: 60px;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 48px
}

.prm_exp_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.prm_exp_card {
  background: #FFFDFC;
  padding: 24px;
  border-radius: 13px;
  box-shadow: 2px 5px 28px 0 #0b05021a;
  position: relative;
  overflow: hidden;
  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm_exp_card:hover {
  transform: translateY(-4px)
}

.prm_exp_card_img_wrap {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 7px;
  overflow: hidden;
  margin: 0 0 24px;
  position: relative
}

.prm_exp_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .38s ease-in-out
}

.prm_exp_card:hover .prm_exp_card_img {
  transform: scale(1.06)
}

.prm_exp_card_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b0502e0;
  color: #FFFDFC;
  padding: 8px 24px;
  font-size: 15px;
  line-height: 1.55;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.prm_exp_card:hover .prm_exp_card_caption {
  transform: translateY(0)
}

.prm_exp_card_h {
  font-size: 31px;
  line-height: 1.3;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E35705
}

.prm_exp_card_txt {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: justify
}

.prm_exp_card_profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0
}

.prm_exp_card_profile_img {
  width: 80px;
  height: 106px;
  border-radius: 22px;
  object-fit: cover;
  object-position: top
}

.prm_exp_card_profile_name {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0
}

.prm_outcome {
  padding: 96px 24px;
  background: #FFFDFC;
  position: relative
}

.prm_outcome_pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .02;
  background-image: repeating-linear-gradient(0deg, #E35705 0px, #E35705 1px, transparent 1px, transparent 32px), repeating-linear-gradient(60deg, #E35705 0px, #E35705 1px, transparent 1px, transparent 32px), repeating-linear-gradient(120deg, #E35705 0px, #E35705 1px, transparent 1px, transparent 32px);
  pointer-events: none
}

.prm_outcome_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.prm_outcome_h {
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 48px;
  text-align: left
}

.prm_outcome_layout {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  align-items: start
}

.prm_outcome_box {
  background: linear-gradient(217deg, #e3570508 0%, #fffdfce6 100%);
  padding: 48px 24px;
  border-radius: 36px;
  box-shadow: inset 2px 3px 4px 0 #0b05020d;
  position: relative
}

.prm_outcome_box_h {
  font-size: 31px;
  line-height: 1.3;
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E35705
}

.prm_outcome_box_txt {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  text-align: justify
}

.prm_outcome_box_txt:last-child {
  margin: 0
}

.prm_outcome_mid {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.prm_outcome_metric {
  background: #FFFDFC;
  padding: 24px;
  border-radius: 13px;
  box-shadow: 2px 5px 28px 0 #0b05021a;
  text-align: center;
  position: relative;
  overflow: hidden
}

.prm_outcome_metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E35705 0%, #e357054d 100%)
}

.prm_outcome_metric_val {
  font-size: 60px;
  line-height: 1.1;
  color: #E35705;
  margin: 0 0 8px;
  font-weight: 700
}

.prm_outcome_metric_label {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  letter-spacing: .04em
}

.prm_value {
  padding: 96px 24px 144px;
  background: linear-gradient(0deg, #0B0502 0%, #0b0502eb 100%);
  color: #FFFDFC;
  position: relative
}

.prm_value_vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, #0b050266 100%);
  pointer-events: none;
  animation: prm_vignette_pulse 4.2s ease-in-out infinite
}

@keyframes prm_vignette_pulse {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

.prm_value_inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative
}

.prm_value_h {
  font-size: 60px;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 48px
}

.prm_value_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.prm_value_col_h {
  font-size: 31px;
  line-height: 1.3;
  margin: 0 0 24px;
  color: #E35705
}

.prm_value_col_txt {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  text-align: justify
}

.prm_value_col_txt:last-child {
  margin: 0
}

.prm_value_list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0
}

.prm_value_list_item {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 8px;
  padding-left: 24px;
  position: relative
}

.prm_value_list_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #E35705;
  border-radius: 50%
}

@media (max-width: 1024px) {
  .prm_intro_grid {
    grid-template-columns: 1fr
  }

  .prm_intro_h1 {
    font-size: 60px
  }

  .prm_exp_grid {
    grid-template-columns: 1fr
  }

  .prm_outcome_layout {
    grid-template-columns: 1fr
  }

  .prm_outcome_h {
    font-size: 31px
  }

  .prm_value_h {
    font-size: 31px
  }

  .prm_value_content {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .prm_intro {
    padding: 48px 24px
  }

  .prm_intro_h1 {
    font-size: 31px
  }

  .prm_exp {
    padding: 48px 24px
  }

  .prm_exp_h {
    font-size: 31px
  }

  .prm_outcome {
    padding: 48px 24px
  }

  .prm_outcome_box {
    padding: 24px
  }

  .prm_value {
    padding: 48px 24px 96px
  }
}

.contact_allocation {
  background: #FFFDFC;
  color: #0B0502;
  max-width: 1500px;
  margin: 0 auto
}

.contact_allocation .intro_header {
  padding: 96px 24px 48px;
  background: linear-gradient(127deg, #fff5ed 0%, #fef8f5 100%);
  position: relative;
  overflow: hidden
}

.contact_allocation .intro_header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFFDFC;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0
}

.contact_allocation .intro_layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  z-index: 1
}

.contact_allocation .text_side {
  flex: 0 0 58%;
  padding-right: 24px
}

.contact_allocation .visual_side {
  flex: 1;
  position: relative
}

.contact_allocation .label_tag {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #E35705;
  margin-bottom: 24px;
  font-weight: 600;
  opacity: 0;
  animation: reveal_tag .35s cubic-bezier(0.4, 0, 0.2, 1) .1s forwards
}

@keyframes reveal_tag {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_allocation .main_title {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0B0502;
  opacity: 0;
  animation: reveal_title .38s cubic-bezier(0.4, 0, 0.2, 1) .25s forwards
}

@keyframes reveal_title {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_allocation .sub_title {
  font-size: 31px;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #E35705;
  opacity: 0;
  animation: reveal_subtitle .32s cubic-bezier(0.4, 0, 0.2, 1) .4s forwards
}

@keyframes reveal_subtitle {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_allocation .intro_text {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  text-align: justify;
  opacity: 0;
  animation: reveal_text .36s cubic-bezier(0.4, 0, 0.2, 1) .55s forwards
}

@keyframes reveal_text {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_allocation .image_holder {
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 2px 12px 48px 0 #0b05021f;
  opacity: 0;
  animation: reveal_image .4s cubic-bezier(0.4, 0, 0.2, 1) .7s forwards
}

@keyframes reveal_image {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_allocation .image_holder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .image_holder:hover img {
  transform: scale(1.05)
}

.contact_allocation .shape_accent_one {
  position: absolute;
  top: 48px;
  right: 24px;
  width: 120px;
  height: 120px;
  background: #E35705;
  opacity: .08;
  border-radius: 36px;
  transform: rotate(15deg);
  pointer-events: none
}

.contact_allocation .shape_accent_two {
  position: absolute;
  bottom: 96px;
  left: 8px;
  width: 80px;
  height: 80px;
  background: #E35705;
  opacity: .12;
  border-radius: 50%;
  pointer-events: none
}

.contact_allocation .form_section {
  padding: 96px 24px;
  background: #FFFDFC
}

.contact_allocation .form_container {
  max-width: 720px;
  margin: 0 auto
}

.contact_allocation .section_heading {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #0B0502;
  text-align: left;
  position: relative;
  padding-bottom: 24px
}

.contact_allocation .section_heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #E35705 0%, #e3570533 100%);
  border-radius: 4px
}

.contact_allocation .section_description {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  margin-bottom: 48px;
  text-align: justify
}

.contact_allocation .contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact_allocation .field_group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_allocation .field_label {
  font-size: 15px;
  line-height: 1.3;
  color: #0B0502;
  font-weight: 600
}

.contact_allocation .field_input {
  padding: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #0B0502;
  background: #FFFDFC;
  border: 2px solid #0b050226;
  border-radius: 13px;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 2px 3px 4px 0 #0b05020d
}

.contact_allocation .field_input:focus {
  outline: none;
  border-color: #E35705;
  box-shadow: inset 2px 3px 4px 0 #0b05020d 2px 5px 28px 0 #e357051a
}

.contact_allocation .field_input::placeholder {
  color: #e3570559
}

.contact_allocation .field_textarea {
  min-height: 180px;
  resize: vertical;
  padding: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  background: #FFFDFC;
  border: 2px solid #0b050226;
  border-radius: 13px;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 2px 3px 4px 0 #0b05020d
}

.contact_allocation .field_textarea:focus {
  outline: none;
  border-color: #E35705;
  box-shadow: inset 2px 3px 4px 0 #0b05020d 2px 5px 28px 0 #e357051a
}

.contact_allocation .field_textarea::placeholder {
  color: #e3570559
}

.contact_allocation .consent_wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #fff9f5 0%, #fefbf9 100%);
  border-radius: 13px;
  border: 1px solid #e357051f
}

.contact_allocation .consent_checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #E35705
}

.contact_allocation .consent_text {
  font-size: 15px;
  line-height: 1.55;
  color: #0B0502
}

.contact_allocation .consent_text a {
  color: #E35705;
  text-decoration: none;
  position: relative;
  transition: color .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .consent_text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E35705;
  transition: width .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .consent_text a:hover {
  color: #0B0502
}

.contact_allocation .consent_text a:hover::after {
  width: 100%
}

.contact_allocation .submit_button {
  padding: 24px 48px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFFDFC;
  background: #E35705;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), background .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 5px 28px 0 #e357051a;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.contact_allocation .submit_button::after {
  content: '→';
  font-size: 15px;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .submit_button:hover {
  background: #0B0502;
  transform: translateX(8px);
  box-shadow: 2px 12px 48px 0 #0b05021f
}

.contact_allocation .submit_button:hover::after {
  transform: translateX(4px)
}

.contact_allocation .submit_button:active {
  transform: translateX(8px) scale(0.98)
}

.contact_allocation .details_section {
  padding: 96px 24px;
  background: linear-gradient(214deg, #fef7f2 0%, #fffcfa 100%);
  position: relative
}

.contact_allocation .details_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #E35705 0px, #E35705 40px, transparent 40px, transparent 80px);
  opacity: .2
}

.contact_allocation .details_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto
}

.contact_allocation .detail_card {
  background: #FFFDFC;
  padding: 48px;
  border-radius: 22px;
  box-shadow: 2px 5px 28px 0 #0b05021a;
  transition: transform .34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .34s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.contact_allocation .detail_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #E35705 0%, #e357054d 100%)
}

.contact_allocation .detail_card:hover {
  transform: translateY(-8px);
  box-shadow: 2px 12px 48px 0 #0b05021f
}

.contact_allocation .card_icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E35705 0%, #e35705b3 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 2px 3px 4px 0 #e357050d
}

.contact_allocation .card_icon svg {
  width: 28px;
  height: 28px;
  fill: #FFFDFC
}

.contact_allocation .card_title {
  font-size: 31px;
  line-height: 1.3;
  color: #0B0502;
  margin-bottom: 24px;
  font-weight: 600
}

.contact_allocation .card_content {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_allocation .info_line {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_allocation .info_label {
  font-weight: 600;
  color: #E35705;
  font-size: 15px;
  letter-spacing: .05em
}

.contact_allocation .info_value {
  color: #0B0502
}

.contact_allocation .info_link {
  color: #E35705;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color .29s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .info_link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0B0502;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_allocation .info_link:hover {
  color: #0B0502
}

.contact_allocation .info_link:hover::after {
  width: 100%
}

.contact_allocation .availability_note {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(127deg, #fff5ed 0%, #fef8f5 100%);
  border-radius: 13px;
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  text-align: justify;
  border: 1px solid #e357051f
}

@media (max-width: 1024px) {
  .contact_allocation .intro_layout {
    flex-direction: column;
    gap: 48px
  }

  .contact_allocation .text_side {
    flex: 1;
    padding-right: 0
  }

  .contact_allocation .visual_side {
    width: 100%
  }

  .contact_allocation .main_title {
    font-size: 60px
  }

  .contact_allocation .section_heading {
    font-size: 31px
  }
}

@media (max-width: 768px) {
  .contact_allocation .intro_header {
    padding: 48px 24px 24px
  }

  .contact_allocation .main_title {
    font-size: 31px
  }

  .contact_allocation .sub_title {
    font-size: 15px
  }

  .contact_allocation .form_section {
    padding: 48px 24px
  }

  .contact_allocation .details_section {
    padding: 48px 24px
  }

  .contact_allocation .details_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contact_allocation .detail_card {
    padding: 24px
  }

  .contact_allocation .submit_button {
    width: 100%;
    justify-content: center
  }
}

.apropos {
  background: #FFFDFC;
  color: #0B0502;
  overflow-x: clip
}

.apropos .intro_bloc {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(127deg, #0B0502 0%, #3d2418 100%);
  overflow: hidden
}

.apropos .intro_bloc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #e3570526 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none
}

.apropos .intro_wrapper {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.apropos .intro_txt {
  max-width: 920px
}

.apropos .intro_heading {
  font-size: 72px;
  line-height: 1.1;
  color: #FFFDFC;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.apropos .intro_desc {
  font-size: 31px;
  line-height: 1.55;
  color: #fffdfce0;
  margin: 0
}

.apropos .fondation_section {
  padding: 96px 24px;
  background: linear-gradient(90deg, #e357050a 0%, #fffdfcff 100%);
  position: relative
}

.apropos .fondation_container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.apropos .fondation_txt_zone {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.apropos .fondation_h {
  font-size: 60px;
  line-height: 1.1;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 3px solid #E35705;
  display: inline-block
}

.apropos .fondation_p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: justify
}

.apropos .fondation_img_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.apropos .fondation_img_box {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 #0b05021a;
  position: relative
}

.apropos .fondation_img_box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3570540 0%, #0b050226 100%);
  mix-blend-mode: multiply;
  pointer-events: none
}

.apropos .fondation_img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

.apropos .equipe_section {
  padding: 96px 24px;
  background: #FFFDFC
}

.apropos .equipe_container {
  max-width: 1500px;
  margin: 0 auto
}

.apropos .equipe_h {
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 48px;
  text-align: center
}

.apropos .equipe_grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start
}

.apropos .equipe_profile_card {
  background: #FFFDFC;
  border-radius: 22px;
  padding: 24px;
  box-shadow: inset 2px 3px 4px 0 #0b05020d;
  border: 1px solid #0b050214
}

.apropos .equipe_portrait_wrap {
  width: 100%;
  height: 440px;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative
}

.apropos .equipe_portrait_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e357051f 0%, #0b05022e 100%);
  mix-blend-mode: multiply;
  pointer-events: none
}

.apropos .equipe_portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.apropos .equipe_nom {
  font-size: 31px;
  line-height: 1.3;
  margin: 0 0 8px
}

.apropos .equipe_role {
  font-size: 15px;
  line-height: 1.55;
  color: #E35705;
  margin: 0;
  letter-spacing: .05em;
  text-transform: uppercase
}

.apropos .equipe_content_zone {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.apropos .equipe_expertise_bloc {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.apropos .equipe_subh {
  font-size: 31px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #E35705
}

.apropos .equipe_p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: justify
}

.apropos .equipe_competences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.apropos .equipe_comp_item {
  background: #e357050a;
  padding: 24px;
  border-radius: 7px;
  border-left: 0;
  box-shadow: 2px 3px 4px 0 #0b05020d;
  position: relative
}

.apropos .equipe_comp_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #E35705;
  border-radius: 0 4px 4px 0
}

.apropos .equipe_comp_label {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  font-weight: 600
}

.apropos .valeurs_section {
  padding: 96px 24px;
  background: #FFFDFC;
  position: relative
}

.apropos .valeurs_section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 5 L25 15 L35 15 L27 22 L30 32 L20 26 L10 32 L13 22 L5 15 L15 15 Z' fill='%23E35705' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-repeat: repeat-y;
  pointer-events: none
}

.apropos .valeurs_container {
  max-width: 1500px;
  margin: 0 auto
}

.apropos .valeurs_h {
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 48px
}

.apropos .valeurs_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.apropos .valeurs_col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.apropos .valeurs_img_wrap {
  width: 100%;
  height: 320px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 2px 12px 48px 0 #0b05021f;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: valeurs_reveal .35s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes valeurs_reveal {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%)
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
}

.apropos .valeurs_img_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #e3570547 0%, #0b050238 100%);
  mix-blend-mode: multiply;
  pointer-events: none
}

.apropos .valeurs_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.apropos .valeurs_txt_bloc {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.apropos .valeurs_subh {
  font-size: 31px;
  line-height: 1.3;
  margin: 0
}

.apropos .valeurs_p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: justify
}

.apropos .divider_thick {
  height: 4px;
  background: #E35705;
  margin: 96px 0;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px
}

@media (max-width: 1024px) {
  .apropos .intro_heading {
    font-size: 60px
  }

  .apropos .intro_desc {
    font-size: 31px
  }

  .apropos .fondation_container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .apropos .fondation_h {
    font-size: 60px
  }

  .apropos .equipe_grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .apropos .equipe_profile_card {
    max-width: 480px;
    margin: 0 auto
  }

  .apropos .equipe_competences {
    grid-template-columns: 1fr
  }

  .apropos .valeurs_layout {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media (max-width: 768px) {
  .apropos .intro_bloc {
    padding: 48px 24px
  }

  .apropos .intro_heading {
    font-size: 60px
  }

  .apropos .intro_desc {
    font-size: 31px
  }

  .apropos .fondation_section {
    padding: 48px 24px
  }

  .apropos .fondation_h {
    font-size: 31px
  }

  .apropos .fondation_img_grid {
    grid-template-columns: 1fr
  }

  .apropos .equipe_section {
    padding: 48px 24px
  }

  .apropos .equipe_h {
    font-size: 31px;
    margin-bottom: 24px
  }

  .apropos .equipe_subh {
    font-size: 31px
  }

  .apropos .valeurs_section {
    padding: 48px 24px
  }

  .apropos .valeurs_h {
    font-size: 31px;
    margin-bottom: 24px
  }

  .apropos .valeurs_subh {
    font-size: 31px
  }

  .apropos .divider_thick {
    margin: 48px 0
  }
}

@media (max-width: 480px) {
  .apropos .intro_heading {
    font-size: 60px
  }

  .apropos .intro_desc {
    font-size: 31px
  }

  .apropos .fondation_h {
    font-size: 31px
  }

  .apropos .equipe_h {
    font-size: 31px
  }

  .apropos .equipe_nom {
    font-size: 31px
  }

  .apropos .equipe_subh {
    font-size: 31px
  }

  .apropos .valeurs_h {
    font-size: 31px
  }

  .apropos .valeurs_subh {
    font-size: 31px
  }
}

.allocation_success {
  background: linear-gradient(162deg, #fff8f4, #fef6f1);
  min-height: 100vh;
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.allocation_success .confirm_wrapper {
  max-width: 1500px;
  width: 100%;
  background: #FFFDFC;
  border-radius: 22px;
  padding: 96px 48px;
  box-shadow: 2px 5px 28px 0 #0b05021a;
  text-align: center
}

.allocation_success .status_icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 48px;
  background: #E35705;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.allocation_success .status_icon::before {
  content: '';
  width: 38px;
  height: 20px;
  border-left: 5px solid #FFFDFC;
  border-bottom: 5px solid #FFFDFC;
  transform: rotate(-45deg) translateY(-4px)
}

.allocation_success .confirm_title {
  font-size: 60px;
  line-height: 1.1;
  color: #0B0502;
  margin: 0 0 24px
}

.allocation_success .confirm_message {
  font-size: 15px;
  line-height: 1.55;
  color: #0B0502;
  margin: 0 0 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.allocation_success .details_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 0 48px;
  text-align: left
}

.allocation_success .detail_card {
  background: #fff;
  border-radius: 13px;
  padding: 24px;
  box-shadow: 2px 3px 4px 0 #e357050d;
  border: 1px solid #e3570514
}

.allocation_success .detail_label {
  font-size: 15px;
  line-height: 1.3;
  color: #0b050299;
  margin: 0 0 8px;
  letter-spacing: .03em;
  text-transform: uppercase
}

.allocation_success .detail_value {
  font-size: 31px;
  line-height: 1.3;
  color: #0B0502;
  margin: 0
}

.allocation_success .action_group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.allocation_success .primary_action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E35705;
  color: #FFFDFC;
  font-size: 15px;
  line-height: 1.3;
  padding: 24px 48px;
  border-radius: 7px;
  text-decoration: none;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 3px 4px 0 #0b05020d
}

.allocation_success .primary_action:hover {
  transform: translateY(-2px);
  box-shadow: 2px 12px 48px 0 #0b05021f
}

.allocation_success .primary_action::after {
  content: '';
  width: 16px;
  height: 16px;
  border-top: 2px solid #FFFDFC;
  border-right: 2px solid #FFFDFC;
  transform: rotate(45deg);
  transition: transform .32s ease-in-out
}

.allocation_success .primary_action:hover::after {
  transform: rotate(45deg) translateX(3px)
}

.allocation_success .secondary_action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E35705;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
  transition: color .27s ease-in-out
}

.allocation_success .secondary_action::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #E35705;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.allocation_success .secondary_action:hover::before {
  width: 100%
}

.allocation_success .secondary_action::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .29s ease-in-out
}

.allocation_success .secondary_action:hover::after {
  transform: rotate(45deg) translateX(2px)
}

.allocation_success .info_note {
  margin: 48px 0 0;
  padding: 24px;
  background: #e3570508;
  border-radius: 13px;
  border: 1px solid #e357051f
}

.allocation_success .info_note p {
  font-size: 15px;
  line-height: 1.75;
  color: #0B0502;
  margin: 0;
  text-align: left
}

@media (max-width: 768px) {
  .allocation_success {
    padding: 48px 24px
  }

  .allocation_success .confirm_wrapper {
    padding: 48px 24px
  }

  .allocation_success .confirm_title {
    font-size: 31px
  }

  .allocation_success .details_grid {
    grid-template-columns: 1fr
  }

  .allocation_success .action_group {
    flex-direction: column;
    width: 100%
  }

  .allocation_success .primary_action {
    width: 100%;
    justify-content: center
  }
}