@import "https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;1,400;0,500;1,500;0,700;1,700&display=swap";

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  color: #121212;
  background: #fff
}

:focus {
  outline: 2px dashed #FF6864;
  outline-offset: 4px;
  animation: dash_rotate 3s linear infinite
}

@keyframes dash_rotate {
  to {
    outline-offset: 8px
  }
}

.hdr_shell {
  background: linear-gradient(135deg, #F0F1F6 0%, #fff 100%);
  border-bottom: 1px solid #12121214;
  padding: 24px 0;
  position: relative
}

.hdr_grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2px 2fr;
  gap: 48px;
  align-items: center
}

.brand_hold {
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.logo_frame {
  border: 2px dashed #121212;
  padding: 12px;
  background: #ffffffd9;
  border-radius: 4px;
  box-shadow: 0 6px 14px -2px #12121217;
  transition: box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.logo_frame:hover {
  box-shadow: 0 10px 36px -2px #1212121f;
  transform: translateY(-2px)
}

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

.divider_vert {
  width: 2px;
  height: 96px;
  background: linear-gradient(to bottom, transparent 0%, #FF6864 50%, transparent 100%);
  opacity: .4
}

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

.nav_primary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav_link {
  font-size: 18px;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 36px;
  background: #f0f1f680;
  transition: background .58s ease-in-out, color .58s ease-in-out, box-shadow .58s ease-in-out;
  display: inline-block;
  position: relative;
  overflow: hidden
}

.nav_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff686433, transparent);
  transition: left .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

.nav_link:hover {
  background: #FF6864;
  color: #fff;
  box-shadow: 0 6px 14px -2px #ff686459
}

.nav_link:active {
  transform: scale(0.97);
  transition: transform .12s ease-out
}

.contact_bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  font-size: 15px;
  color: #121212
}

.contact_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  background: #fff9;
  border-radius: 36px;
  border: 1px solid #1212121a;
  transition: border-color .5s ease-in-out, background .5s ease-in-out
}

.contact_item:hover {
  border-color: #FF6864;
  background: #ff68640d
}

.contact_icon {
  width: 18px;
  height: 18px;
  fill: #FF6864
}

.contact_link {
  color: #121212;
  text-decoration: none;
  font-weight: 500;
  transition: color .48s ease-in-out
}

.contact_link:hover {
  color: #FF6864
}

@media (max-width: 1200px) {
  .hdr_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .brand_hold {
    justify-content: center
  }

  .divider_vert {
    display: none
  }

  .nav_zone {
    align-items: center
  }

  .nav_primary {
    justify-content: center
  }

  .contact_bar {
    justify-content: center
  }
}

@media (max-width: 900px) {
  .hdr_shell {
    padding: 24px 0
  }

  .nav_link {
    font-size: 15px;
    padding: 12px
  }

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

@media (max-width: 600px) {
  .hdr_grid {
    padding: 0 12px
  }

  .nav_primary {
    gap: 12px
  }

  .nav_link {
    padding: 12px;
    font-size: 15px
  }

  .contact_bar {
    flex-direction: column;
    gap: 12px
  }
}

.ftr_shell {
  background: linear-gradient(180deg, #F0F1F6 0%, #fff 100%);
  border-top: 1px solid #12121214;
  padding: 96px 0 48px;
  margin-top: 96px
}

.ftr_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px
}

.ftr_logo_section {
  text-align: center;
  margin-bottom: 48px;
  position: relative
}

.ftr_logo_rule {
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #FF6864 50%, transparent 100%);
  margin-bottom: 48px;
  opacity: .5
}

.ftr_logo_frame {
  display: inline-block;
  border: 2px dashed #121212;
  padding: 12px;
  background: #ffffffe6;
  border-radius: 4px;
  box-shadow: 0 6px 14px -2px #12121217;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr_logo_frame:hover {
  box-shadow: 0 10px 36px -2px #1212121f;
  transform: translateY(-3px)
}

.ftr_logo_img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain
}

.ftr_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 48px
}

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

.ftr_heading {
  font-size: 22px;
  font-weight: 700;
  color: #121212;
  margin: 0;
  letter-spacing: -.02em;
  position: relative;
  padding-bottom: 12px
}

.ftr_heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: #FF6864;
  border-radius: 4px
}

.ftr_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ftr_nav_link {
  font-size: 18px;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  padding: 12px 0;
  display: inline-block;
  position: relative;
  transition: color .5s ease-in-out, padding-left .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr_nav_link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #FF6864;
  transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr_nav_link:hover {
  color: #FF6864;
  padding-left: 24px
}

.ftr_nav_link:hover::before {
  width: 18px
}

.ftr_info_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ftr_info_item {
  font-size: 18px;
  color: #121212;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #ffffff80;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: border-left-color .52s ease-in-out, background .52s ease-in-out, transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr_info_item:hover {
  border-left-color: #FF6864;
  background: #ff686414;
  transform: translateX(4px)
}

.ftr_info_icon {
  width: 22px;
  height: 22px;
  fill: #FF6864;
  flex-shrink: 0;
  margin-top: 2px
}

.ftr_info_link {
  color: #121212;
  text-decoration: none;
  font-weight: 500;
  transition: color .48s ease-in-out
}

.ftr_info_link:hover {
  color: #FF6864
}

.ftr_bottom {
  border-top: 1px solid #1212121a;
  padding-top: 24px;
  text-align: center
}

.ftr_copyright {
  font-size: 15px;
  color: #121212;
  margin: 0;
  opacity: .7
}

@media (max-width: 900px) {
  .ftr_shell {
    padding: 48px 0 24px
  }

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

  .ftr_block {
    text-align: center;
    align-items: center
  }

  .ftr_heading::after {
    left: 50%;
    transform: translateX(-50%)
  }

  .ftr_nav_link {
    display: block
  }

  .ftr_info_item {
    justify-content: center
  }
}

@media (max-width: 600px) {
  .ftr_container {
    padding: 0 12px
  }

  .ftr_logo_img {
    width: 70px;
    height: 70px
  }

  .ftr_heading {
    font-size: 18px
  }

  .ftr_nav_link,
  .ftr_info_item {
    font-size: 15px
  }
}

.consent_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -10px 36px -2px #12121240;
  z-index: 1000;
  border-top: 3px solid #FF6864;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .58s ease-in-out, transform .58s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent_bar.visible {
  display: block
}

.consent_bar.shown {
  opacity: 1;
  transform: translateY(0)
}

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

.consent_text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 300px;
  color: #F0F1F6
}

.consent_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.consent_btn {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  border-radius: 36px;
  cursor: pointer;
  transition: background .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.consent_btn.primary {
  background: #FF6864;
  color: #fff;
  box-shadow: 0 3px 5px -2px #ff686466
}

.consent_btn.primary:hover {
  background: #ff5450;
  box-shadow: 0 10px 36px -2px #ff686480;
  transform: translateY(-2px)
}

.consent_btn.primary:active {
  transform: translateY(0) scale(0.98)
}

.consent_btn.secondary {
  background: transparent;
  color: #F0F1F6;
  border: 2px solid #F0F1F6
}

.consent_btn.secondary:hover {
  background: #F0F1F6;
  color: #121212;
  box-shadow: 0 6px 14px -2px #f0f1f64d;
  transform: translateY(-2px)
}

.consent_btn.secondary:active {
  transform: translateY(0) scale(0.98)
}

.consent_toggle_group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #f0f1f61a;
  border-radius: 36px;
  border: 1px solid #f0f1f633
}

.consent_toggle_label {
  font-size: 15px;
  color: #F0F1F6;
  cursor: pointer;
  user-select: none
}

.consent_toggle_switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: #f0f1f64d;
  border-radius: 36px;
  cursor: pointer;
  transition: background .52s ease-in-out
}

.consent_toggle_switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 5px -2px #1212124d
}

.consent_toggle_input {
  display: none
}

.consent_toggle_input:checked+.consent_toggle_switch {
  background: #FF6864
}

.consent_toggle_input:checked+.consent_toggle_switch::after {
  transform: translateX(24px)
}

.consent_manage_tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FF6864;
  color: #fff;
  padding: 24px 12px;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  z-index: 999;
  box-shadow: -3px 0 14px -2px #ff686466;
  transition: padding-right .48s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .48s ease-in-out;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  display: none
}

.consent_manage_tab:hover {
  padding-right: 18px;
  box-shadow: -6px 0 24px -2px #ff686480
}

.consent_manage_panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
  box-shadow: -10px 0 36px -2px #1212124d;
  z-index: 1001;
  padding: 48px 24px;
  overflow-y: auto;
  transition: right .62s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none
}

.consent_manage_panel.open {
  right: 0
}

.consent_panel_close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #F0F1F6;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .45s ease-in-out, transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent_panel_close:hover {
  color: #FF6864;
  transform: rotate(90deg)
}

.consent_panel_heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px
}

.consent_panel_options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px
}

.consent_panel_option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #f0f1f60d;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: border-left-color .5s ease-in-out, background .5s ease-in-out
}

.consent_panel_option:hover {
  border-left-color: #FF6864;
  background: #f0f1f61a
}

.consent_panel_option_label {
  font-size: 18px;
  color: #F0F1F6;
  font-weight: 500
}

.consent_panel_save {
  width: 100%;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 24px;
  background: #FF6864;
  color: #fff;
  border: none;
  border-radius: 36px;
  cursor: pointer;
  box-shadow: 0 6px 14px -2px #ff686466;
  transition: background .55s ease-in-out, box-shadow .55s ease-in-out, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent_panel_save:hover {
  background: #ff5450;
  box-shadow: 0 10px 36px -2px #ff686480;
  transform: translateY(-3px)
}

.consent_panel_save:active {
  transform: translateY(0) scale(0.98)
}

@media (max-width: 900px) {
  .consent_inner {
    flex-direction: column;
    align-items: stretch
  }

  .consent_actions {
    justify-content: center
  }

  .consent_manage_panel {
    width: 100%;
    right: -100%
  }
}

@media (max-width: 600px) {
  .consent_bar {
    padding: 24px 12px
  }

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

  .consent_btn {
    width: 100%
  }

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

.lpem-legal-details {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px;
  background: #fff
}

.lpem-legal-details h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #121212;
  margin: 0 0 48px
}

.lpem-legal-details h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #121212;
  margin: 96px 0 24px
}

.lpem-legal-details h2:first-of-type {
  margin-top: 48px
}

.lpem-legal-details h3 {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #121212;
  margin: 48px 0 24px
}

.lpem-legal-details h4 {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #121212;
  margin: 24px 0 12px
}

.lpem-legal-details h5 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #121212;
  margin: 24px 0 12px;
  font-weight: 600
}

.lpem-legal-details h6 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #121212;
  margin: 24px 0 12px;
  font-weight: 500
}

.lpem-legal-details p {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #121212;
  margin: 0 0 24px
}

.lpem-legal-details ul {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #121212;
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.lpem-legal-details ol {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #121212;
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.lpem-legal-details li {
  margin: 0 0 12px
}

.lpem-legal-details li:last-child {
  margin-bottom: 0
}

.lpem-legal-details ul ul,
.lpem-legal-details ol ol,
.lpem-legal-details ul ol,
.lpem-legal-details ol ul {
  margin: 12px 0 0
}

.lpem-legal-details strong,
.lpem-legal-details b {
  font-weight: 600;
  color: #121212
}

.lpem-legal-details a {
  color: #FF6864;
  text-decoration: none;
  transition: opacity .52s ease-in-out
}

.lpem-legal-details a:hover {
  opacity: .7
}

.lpem-legal-details table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em
}

.lpem-legal-details thead {
  background: #F0F1F6
}

.lpem-legal-details th {
  padding: 12px 24px;
  text-align: left;
  font-weight: 600;
  color: #121212;
  border-bottom: 2px solid #121212
}

.lpem-legal-details td {
  padding: 12px 24px;
  color: #121212;
  border-bottom: 1px solid #F0F1F6
}

.lpem-legal-details tbody tr:last-child td {
  border-bottom: none
}

.lpem-legal-details hr {
  border: none;
  height: 1px;
  background: #F0F1F6;
  margin: 48px 0
}

.lpem-legal-details div {
  margin: 0 0 24px
}

@media (max-width: 900px) {
  .lpem-legal-details {
    padding: 48px 24px
  }

  .lpem-legal-details h1 {
    font-size: clamp(38px, 6vw, 52px)
  }

  .lpem-legal-details h2 {
    font-size: clamp(22px, 5vw, 38px);
    margin: 48px 0 24px
  }

  .lpem-legal-details h3 {
    font-size: clamp(18px, 4vw, 22px)
  }

  .lpem-legal-details table {
    font-size: 15px
  }

  .lpem-legal-details th,
  .lpem-legal-details td {
    padding: 12px
  }
}

@media (max-width: 600px) {
  .lpem-legal-details {
    padding: 24px 12px
  }

  .lpem-legal-details p,
  .lpem-legal-details ul,
  .lpem-legal-details ol {
    font-size: 15px
  }

  .lpem-legal-details table {
    display: block;
    overflow-x: auto
  }
}

.contact_reach {
  background: #fff;
  color: #121212
}

.contact_reach .split_intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  padding: 0
}

.contact_reach .split_intro .left_half {
  background: #F0F1F6;
  padding: 96px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.contact_reach .split_intro .right_half {
  background: #121212;
  padding: 96px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.contact_reach .split_intro .quote_mark {
  position: absolute;
  top: 48px;
  left: 48px;
  font-size: 280px;
  line-height: 1;
  color: #1212120a;
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

.contact_reach .split_intro .right_half .quote_mark {
  color: #ffffff08
}

.contact_reach .split_intro .intro_content {
  position: relative;
  z-index: 2;
  max-width: 540px
}

.contact_reach .split_intro h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  font-weight: 700
}

.contact_reach .split_intro .right_half h1 {
  color: #fff
}

.contact_reach .split_intro .intro_desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 48px;
  letter-spacing: .01em
}

.contact_reach .split_intro .right_half .intro_desc {
  color: #ffffffde
}

.contact_reach .split_intro .action_links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap
}

.contact_reach .split_intro .action_link {
  font-size: 18px;
  line-height: 1.2;
  color: #FF6864;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #FF6864;
  border-radius: 4px;
  transition: background-color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  font-weight: 600;
  letter-spacing: .02em
}

.contact_reach .split_intro .action_link:hover {
  background-color: #FF6864;
  color: #fff
}

.contact_reach .split_intro .action_link:focus {
  outline: 3px solid #ff686466;
  outline-offset: 2px
}

.contact_reach .form_section {
  padding: 96px 24px;
  background: linear-gradient(270deg, #121212 0%, #FF6864 100%);
  position: relative
}

.contact_reach .form_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #FF6864
}

.contact_reach .form_container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start
}

.contact_reach .contact_info_block {
  background: #fffffff7;
  padding: 48px;
  border-radius: 36px;
  box-shadow: 0 10px 36px -2px #1212121f;
  border: 3px dashed #F0F1F6;
  position: relative
}

.contact_reach .contact_info_block h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -.01em;
  font-weight: 700;
  color: #121212
}

.contact_reach .info_list {
  list-style: none;
  padding: 0;
  margin: 0
}

.contact_reach .info_list li {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid #F0F1F6
}

.contact_reach .info_list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.contact_reach .info_label {
  font-size: 15px;
  line-height: 1.6;
  color: #12121299;
  margin: 0 0 4px;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600
}

.contact_reach .info_value {
  font-size: 18px;
  line-height: 1.6;
  color: #121212;
  margin: 0;
  letter-spacing: .01em
}

.contact_reach .info_value a {
  color: #FF6864;
  text-decoration: none;
  transition: color .48s ease-in-out;
  position: relative;
  display: inline-block
}

.contact_reach .info_value a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6864;
  transition: width .56s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact_reach .info_value a:hover::after {
  width: 100%
}

.contact_reach .info_value a:hover {
  color: #121212
}

.contact_reach .form_wrapper {
  background: #fff;
  padding: 48px;
  border-radius: 36px;
  box-shadow: 0 10px 36px -2px #ff68641f inset 0 2px 8px #fffc;
  position: relative
}

.contact_reach .form_wrapper h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -.01em;
  font-weight: 700;
  color: #121212
}

.contact_reach .form_subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 48px;
  color: #121212b3;
  letter-spacing: .01em
}

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

.contact_reach .field_group {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact_reach .field_label {
  font-size: 15px;
  line-height: 1.6;
  color: #121212;
  font-weight: 600;
  letter-spacing: .02em
}

.contact_reach .field_label .required {
  color: #FF6864;
  margin-left: 4px
}

.contact_reach .field_input {
  font-size: 18px;
  line-height: 1.6;
  padding: 12px 24px;
  border: 2px solid #F0F1F6;
  border-radius: 4px;
  background: #fff;
  color: #121212;
  transition: border-color .48s ease-in-out, box-shadow .48s ease-in-out;
  letter-spacing: .01em
}

.contact_reach .field_input::placeholder {
  color: #12121280;
  font-style: italic
}

.contact_reach .field_input:focus {
  outline: none;
  border-color: #FF6864;
  box-shadow: 0 0 0 4px #ff68641f
}

.contact_reach .field_textarea {
  min-height: 180px;
  resize: vertical;
  font-family: inherit
}

.contact_reach .privacy_consent {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: start;
  margin: 24px 0 0
}

.contact_reach .privacy_consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #FF6864
}

.contact_reach .privacy_text {
  font-size: 15px;
  line-height: 1.6;
  color: #121212cc;
  letter-spacing: .01em
}

.contact_reach .privacy_text a {
  color: #FF6864;
  text-decoration: none;
  border-bottom: 1px solid #FF6864;
  transition: color .48s ease-in-out, border-color .48s ease-in-out
}

.contact_reach .privacy_text a:hover {
  color: #121212;
  border-color: #121212
}

.contact_reach .submit_btn {
  padding: 12px 48px;
  background: #121212;
  color: #fff;
  border: 2px solid #121212;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: .02em;
  margin-top: 24px;
  align-self: flex-start;
  position: relative;
  overflow: hidden
}

.contact_reach .submit_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #FF6864;
  transition: left .62s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.contact_reach .submit_btn:hover::before {
  left: 0
}

.contact_reach .submit_btn span {
  position: relative;
  z-index: 1
}

.contact_reach .submit_btn:hover {
  color: #fff;
  border-color: #FF6864
}

.contact_reach .submit_btn:focus {
  outline: 3px solid #12121266;
  outline-offset: 2px
}

.contact_reach .submit_btn:disabled {
  opacity: .5;
  cursor: not-allowed
}

.contact_reach .resources_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0
}

.contact_reach .resource_card {
  background: #F0F1F6;
  padding: 24px;
  border-radius: 4px;
  transition: box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 5px -2px #1212120f
}

.contact_reach .resource_card:hover {
  box-shadow: 0 10px 36px -2px #1212121f;
  transform: translateY(-4px)
}

.contact_reach .resource_icon {
  width: 48px;
  height: 48px;
  background: #FF6864;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px
}

.contact_reach .resource_icon svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.contact_reach .resource_title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: #121212;
  margin: 0 0 4px;
  letter-spacing: .01em
}

.contact_reach .resource_meta {
  font-size: 15px;
  line-height: 1.6;
  color: #12121299;
  margin: 0;
  letter-spacing: .01em
}

.contact_reach .divider_dots {
  height: 2px;
  background-image: repeating-linear-gradient(to right, #F0F1F6 0px, #F0F1F6 8px, transparent 8px, transparent 16px, #F0F1F6 16px, #F0F1F6 20px, transparent 20px, transparent 28px);
  margin: 96px 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto
}

@media (max-width: 1200px) {
  .contact_reach .form_container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact_reach .resources_grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {
  .contact_reach .split_intro {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .contact_reach .split_intro .left_half,
  .contact_reach .split_intro .right_half {
    padding: 48px 24px
  }

  .contact_reach .split_intro .quote_mark {
    font-size: 180px;
    top: 24px;
    left: 24px
  }

  .contact_reach .split_intro h1 {
    font-size: 38px
  }

  .contact_reach .split_intro .intro_desc {
    font-size: 18px
  }

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

  .contact_reach .contact_info_block,
  .contact_reach .form_wrapper {
    padding: 24px
  }

  .contact_reach .resources_grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .contact_reach .split_intro h1 {
    font-size: 22px
  }

  .contact_reach .split_intro .intro_desc {
    font-size: 15px
  }

  .contact_reach .split_intro .action_links {
    flex-direction: column;
    gap: 12px
  }

  .contact_reach .split_intro .action_link {
    font-size: 15px;
    padding: 12px 24px
  }

  .contact_reach .contact_info_block h2,
  .contact_reach .form_wrapper h2 {
    font-size: 22px
  }

  .contact_reach .form_subtitle {
    font-size: 15px
  }

  .contact_reach .field_input,
  .contact_reach .submit_btn {
    font-size: 15px
  }

  .contact_reach .submit_btn {
    width: 100%;
    padding: 12px 24px
  }
}

.abt_us {
  background: #FFF;
  overflow-x: clip
}

.abt_us .ttl_blk {
  position: relative;
  padding: 96px 24px;
  background: #F0F1F6;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto
}

.abt_us .ttl_blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #1212120a 1px, transparent 1px), radial-gradient(circle, #1212120a 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0, 24px 24px;
  pointer-events: none;
  z-index: 1
}

.abt_us .ttl_cntnt {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto
}

.abt_us .ttl_txt {
  flex: 1;
  min-width: 0
}

.abt_us .ttl_h {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #121212
}

.abt_us .ttl_h .grd_wrd {
  background: linear-gradient(to left, #121212, #FF6864);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.abt_us .ttl_dsc {
  font-size: 18px;
  line-height: 1.6;
  color: #121212;
  margin: 0;
  letter-spacing: .01em
}

.abt_us .ttl_img_wrp {
  position: relative;
  width: 380px;
  flex-shrink: 0
}

.abt_us .ttl_img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
  display: block
}

.abt_us .trng_accnt {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none
}

.abt_us .trng_accnt.tp_lft {
  top: 24px;
  left: 24px;
  border-width: 0 48px 48px 0;
  border-color: transparent #FF6864 transparent transparent;
  opacity: .85
}

.abt_us .trng_accnt.btm_rght {
  bottom: 24px;
  right: 24px;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent #FF6864;
  opacity: .85
}

.abt_us .dvdr_zg {
  width: 100%;
  height: 72px;
  display: block;
  margin: 0;
  padding: 0
}

.abt_us .stry_sctn {
  background: #121212;
  padding: 96px 24px;
  position: relative
}

.abt_us .stry_cntnt {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.abt_us .stry_itm {
  background: #ffffff0a;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #ffffff14;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: bnc_ld .65s ease-in-out;
  animation-fill-mode: both
}

.abt_us .stry_itm:nth-child(1) {
  animation-delay: .1s
}

.abt_us .stry_itm:nth-child(2) {
  animation-delay: .2s
}

.abt_us .stry_itm:nth-child(3) {
  animation-delay: .3s
}

.abt_us .stry_itm:nth-child(4) {
  animation-delay: .4s
}

.abt_us .stry_itm:nth-child(5) {
  animation-delay: .5s
}

.abt_us .stry_itm:nth-child(6) {
  animation-delay: .6s
}

@keyframes bnc_ld {
  0% {
    opacity: 0;
    transform: translateY(-48px)
  }

  50% {
    transform: translateY(12px)
  }

  70% {
    transform: translateY(-4px)
  }

  85% {
    transform: translateY(2px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.abt_us .stry_itm:hover {
  background: #ffffff14;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px -2px #ff68641f
}

.abt_us .stry_icn_wrp {
  width: 56px;
  height: 56px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff68641f;
  border-radius: 36px;
  transition: transform .48s ease-in-out
}

.abt_us .stry_itm:hover .stry_icn_wrp {
  transform: scale(1.15) rotate(8deg);
  animation: icn_bnc .52s ease-in-out
}

@keyframes icn_bnc {

  0%,
  100% {
    transform: scale(1.15) rotate(8deg)
  }

  25% {
    transform: scale(1.25) rotate(-4deg)
  }

  50% {
    transform: scale(1.1) rotate(6deg)
  }

  75% {
    transform: scale(1.2) rotate(-2deg)
  }
}

.abt_us .stry_icn {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #FF6864;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abt_us .stry_lbl {
  font-size: 15px;
  line-height: 1.6;
  color: #fff9;
  margin: 0 0 4px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 600
}

.abt_us .stry_dvdr {
  width: 100%;
  height: 1px;
  background: #ff68644d;
  margin: 4px 0 12px
}

.abt_us .stry_vl {
  font-size: 22px;
  line-height: 1.2;
  color: #FFF;
  margin: 0;
  letter-spacing: -.01em;
  font-weight: 600
}

.abt_us .tm_sctn {
  padding: 96px 24px;
  background: #FFF;
  position: relative
}

.abt_us .tm_cntnt {
  max-width: 1320px;
  margin: 0 auto
}

.abt_us .tm_hdr {
  text-align: center;
  margin: 0 0 48px
}

.abt_us .tm_h {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-weight: 700;
  color: #121212
}

.abt_us .tm_sub {
  font-size: 18px;
  line-height: 1.6;
  color: #121212;
  margin: 0;
  letter-spacing: .01em;
  opacity: .7
}

.abt_us .tm_grd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.abt_us .tm_crd {
  background: #F0F1F6;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .58s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .58s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt_us .tm_crd:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 36px -2px #1212121f
}

.abt_us .tm_img_wrp {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.abt_us .tm_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .62s ease-in-out
}

.abt_us .tm_crd:hover .tm_img {
  transform: scale(1.08)
}

.abt_us .tm_inf {
  padding: 24px
}

.abt_us .tm_nm {
  font-size: 22px;
  line-height: 1.2;
  color: #121212;
  margin: 0 0 4px;
  letter-spacing: -.01em;
  font-weight: 600
}

.abt_us .tm_rl {
  font-size: 15px;
  line-height: 1.6;
  color: #FF6864;
  margin: 0 0 12px;
  letter-spacing: .01em;
  font-weight: 500
}

.abt_us .tm_dsc {
  font-size: 15px;
  line-height: 1.6;
  color: #121212;
  margin: 0;
  letter-spacing: .01em;
  opacity: .8
}

.abt_us .vls_sctn {
  padding: 96px 24px;
  background: linear-gradient(to left, #1a1a1a, #121212);
  position: relative
}

.abt_us .vls_cntnt {
  max-width: 1320px;
  margin: 0 auto
}

.abt_us .vls_h {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 48px;
  font-weight: 700;
  color: #FFF;
  text-align: center
}

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

.abt_us .vls_blk {
  background: #ffffff08;
  padding: 48px;
  border-radius: 36px;
  border: 1px solid #ffffff0f;
  transition: background .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: inset 0 2px 12px #ffffff05
}

.abt_us .vls_blk:hover {
  background: #ffffff0f;
  border-color: #ff68644d;
  box-shadow: inset 0 4px 24px #ff686414 0 6px 14px -2px #ff686417
}

.abt_us .vls_blk_h {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #FFF
}

.abt_us .vls_blk_h .frst_wrd {
  font-size: 52px;
  color: #FF6864
}

.abt_us .vls_blk_txt {
  font-size: 18px;
  line-height: 1.9;
  color: #fffc;
  margin: 0;
  letter-spacing: .01em
}

@media (max-width: 1200px) {
  .abt_us .ttl_h {
    font-size: 52px
  }

  .abt_us .ttl_img_wrp {
    width: 320px
  }

  .abt_us .ttl_img {
    height: 440px
  }

  .abt_us .stry_cntnt {
    grid-template-columns: repeat(2, 1fr)
  }

  .abt_us .tm_grd {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {
  .abt_us .ttl_blk {
    padding: 48px 24px
  }

  .abt_us .ttl_cntnt {
    flex-direction: column;
    gap: 24px
  }

  .abt_us .ttl_h {
    font-size: 38px
  }

  .abt_us .ttl_img_wrp {
    width: 100%;
    max-width: 420px
  }

  .abt_us .ttl_img {
    height: 380px
  }

  .abt_us .stry_sctn {
    padding: 48px 24px
  }

  .abt_us .stry_cntnt {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .abt_us .tm_sctn {
    padding: 48px 24px
  }

  .abt_us .tm_h {
    font-size: 38px
  }

  .abt_us .tm_grd {
    grid-template-columns: 1fr
  }

  .abt_us .vls_sctn {
    padding: 48px 24px
  }

  .abt_us .vls_h {
    font-size: 38px;
    margin: 0 0 24px
  }

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

  .abt_us .vls_blk {
    padding: 24px
  }

  .abt_us .vls_blk_h {
    font-size: 22px
  }

  .abt_us .vls_blk_h .frst_wrd {
    font-size: 38px
  }
}

@media (max-width: 600px) {
  .abt_us .ttl_blk {
    padding: 24px 12px
  }

  .abt_us .ttl_h {
    font-size: 22px;
    margin: 0 0 12px
  }

  .abt_us .ttl_dsc {
    font-size: 15px
  }

  .abt_us .ttl_img {
    height: 320px
  }

  .abt_us .stry_sctn {
    padding: 24px 12px
  }

  .abt_us .stry_itm {
    padding: 12px
  }

  .abt_us .tm_sctn {
    padding: 24px 12px
  }

  .abt_us .tm_h {
    font-size: 22px;
    margin: 0 0 4px
  }

  .abt_us .tm_hdr {
    margin: 0 0 24px
  }

  .abt_us .tm_img_wrp {
    height: 220px
  }

  .abt_us .tm_inf {
    padding: 12px
  }

  .abt_us .vls_sctn {
    padding: 24px 12px
  }

  .abt_us .vls_h {
    font-size: 22px;
    margin: 0 0 12px
  }

  .abt_us .vls_blk {
    padding: 12px
  }

  .abt_us .vls_blk_h {
    font-size: 18px;
    margin: 0 0 12px
  }

  .abt_us .vls_blk_h .frst_wrd {
    font-size: 22px
  }

  .abt_us .vls_blk_txt {
    font-size: 15px
  }
}

.lrn_prog {
  background: #fff;
  color: #121212;
  overflow-x: clip
}

.lrn_prog * {
  box-sizing: border-box
}

.lrn_prog .top_intro {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  position: relative
}

.lrn_prog .top_intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #12121205 1px, transparent 1px), linear-gradient(0deg, #12121205 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1
}

.lrn_prog .img_col {
  position: relative;
  z-index: 2
}

.lrn_prog .img_holder {
  width: 280px;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn_prog .img_holder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #12121226 100%);
  z-index: 2;
  pointer-events: none
}

.lrn_prog .img_holder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #FF6864;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  z-index: 3;
  pointer-events: none
}

.lrn_prog .img_holder:hover::after {
  opacity: 1
}

.lrn_prog .img_holder:hover {
  transform: translateY(-12px)
}

.lrn_prog .main_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.lrn_prog .txt_col {
  position: relative;
  z-index: 2
}

.lrn_prog .top_head {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  font-weight: 700
}

.lrn_prog .top_tag {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #121212bf
}

.lrn_prog .action_links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center
}

.lrn_prog .action_link {
  font-size: 15px;
  color: #FF6864;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color .48s ease-in-out, transform .48s ease-in-out;
  position: relative
}

.lrn_prog .action_link::after {
  content: '';
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 50%, 70% 50%, 70% 0, 100% 50%, 70% 100%, 70% 50%);
  transition: transform .48s ease-in-out
}

.lrn_prog .action_link:hover {
  color: #121212;
  transform: translateX(4px)
}

.lrn_prog .action_link:hover::after {
  transform: translateX(4px)
}

.lrn_prog .divider_arrows {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center
}

.lrn_prog .arrow_shape {
  width: 24px;
  height: 24px;
  background: #FF6864;
  clip-path: polygon(0 50%, 70% 50%, 70% 0, 100% 50%, 70% 100%, 70% 50%);
  opacity: .3;
  animation: float_arrow 3.2s ease-in-out infinite
}

.lrn_prog .arrow_shape:nth-child(1) {
  animation-delay: 0s
}

.lrn_prog .arrow_shape:nth-child(2) {
  animation-delay: .4s
}

.lrn_prog .arrow_shape:nth-child(3) {
  animation-delay: .8s
}

@keyframes float_arrow {

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

  50% {
    transform: translateY(-4px) scale(1.1);
    opacity: .6
  }
}

.lrn_prog .curriculum_sec {
  background: linear-gradient(270deg, #121212 0%, #FF6864 100%);
  padding: 96px 24px
}

.lrn_prog .curriculum_wrap {
  max-width: 1320px;
  margin: 0 auto
}

.lrn_prog .curriculum_head {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center
}

.lrn_prog .modules_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px
}

.lrn_prog .module_card {
  background: #fffffff2;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 6px 14px -2px #12121217;
  transition: transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.lrn_prog .module_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FF6864;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .58s ease-in-out
}

.lrn_prog .module_card:hover::before {
  transform: scaleX(1)
}

.lrn_prog .module_card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 10px 36px -2px #ff68641f
}

.lrn_prog .module_num {
  font-size: 15px;
  color: #FF6864;
  font-weight: 700;
  margin: 0 0 12px;
  display: block
}

.lrn_prog .module_title {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0 0 12px;
  font-weight: 600;
  color: #121212
}

.lrn_prog .module_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #121212b3;
  margin: 0
}

.lrn_prog .pricing_sec {
  background: #F0F1F6;
  padding: 96px 24px
}

.lrn_prog .pricing_wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start
}

.lrn_prog .price_left {
  position: sticky;
  top: 96px
}

.lrn_prog .price_head {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #121212
}

.lrn_prog .price_intro {
  font-size: 15px;
  line-height: 1.6;
  color: #121212bf;
  margin: 0 0 24px
}

.lrn_prog .icon_pair {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0
}

.lrn_prog .icon_sym {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon_float 4.5s ease-in-out infinite
}

.lrn_prog .icon_sym:nth-child(1) {
  animation-delay: 0s
}

.lrn_prog .icon_sym:nth-child(2) {
  animation-delay: 2.25s
}

@keyframes icon_float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  25% {
    transform: translateY(-8px) rotate(3deg)
  }

  50% {
    transform: translateY(0) rotate(0deg)
  }

  75% {
    transform: translateY(8px) rotate(-3deg)
  }
}

.lrn_prog .icon_svg {
  width: 100%;
  height: 100%
}

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

.lrn_prog .plan_card {
  background: #fff;
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 3px 5px -2px #ff68640f;
  transition: box-shadow .6s ease-in-out, transform .6s ease-in-out;
  position: relative
}

.lrn_prog .plan_card:hover {
  box-shadow: 0 10px 36px -2px #ff68641f;
  transform: translateX(-12px)
}

.lrn_prog .plan_name {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0 0 12px;
  font-weight: 600;
  color: #121212
}

.lrn_prog .plan_price {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #FF6864;
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 12px
}

.lrn_prog .price_currency {
  font-size: 22px
}

.lrn_prog .price_period {
  font-size: 15px;
  color: #12121299;
  font-weight: 400
}

.lrn_prog .plan_features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lrn_prog .feature_item {
  font-size: 15px;
  line-height: 1.6;
  color: #121212bf;
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.lrn_prog .feature_item::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #FF6864;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 4px
}

.lrn_prog .plan_btn {
  background: #121212;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 48px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .5s ease-in-out, transform .5s ease-in-out, box-shadow .5s ease-in-out;
  box-shadow: 0 3px 5px -2px #1212120f;
  display: inline-block
}

.lrn_prog .plan_btn:hover {
  background: #FF6864;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px -2px #1212121f
}

.lrn_prog .plan_btn:focus {
  outline: 2px solid #FF6864;
  outline-offset: 4px
}

.lrn_prog .plan_btn:active {
  transform: translateY(-2px)
}

.lrn_prog .highlight_row {
  background: #FF6864;
  color: #fff
}

@media (max-width: 1200px) {
  .lrn_prog .top_intro {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 48px 24px
  }

  .lrn_prog .img_holder {
    width: 240px;
    height: 320px
  }

  .lrn_prog .top_head {
    font-size: 38px
  }

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

  .lrn_prog .price_left {
    position: static
  }
}

@media (max-width: 900px) {
  .lrn_prog .top_intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px
  }

  .lrn_prog .img_holder {
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto
  }

  .lrn_prog .top_head {
    font-size: 38px
  }

  .lrn_prog .curriculum_head {
    font-size: 22px
  }

  .lrn_prog .modules_grid {
    grid-template-columns: 1fr
  }

  .lrn_prog .price_head {
    font-size: 22px
  }

  .lrn_prog .plan_card {
    padding: 24px
  }
}

@media (max-width: 600px) {
  .lrn_prog .top_intro {
    padding: 24px 12px
  }

  .lrn_prog .top_head {
    font-size: 22px
  }

  .lrn_prog .top_tag {
    font-size: 15px
  }

  .lrn_prog .curriculum_sec {
    padding: 48px 12px
  }

  .lrn_prog .curriculum_head {
    font-size: 22px;
    margin: 0 0 24px
  }

  .lrn_prog .pricing_sec {
    padding: 48px 12px
  }

  .lrn_prog .price_head {
    font-size: 22px
  }

  .lrn_prog .plan_price {
    font-size: 22px
  }

  .lrn_prog .price_currency {
    font-size: 18px
  }

  .lrn_prog .divider_arrows {
    padding: 24px 12px
  }

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

.faq_pg {
  background: #fff;
  overflow-x: clip
}

.faq_pg .ttl_zone {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
  align-items: center
}

.faq_pg .ttl_zone::before,
.faq_pg .ttl_zone::after {
  content: '';
  position: absolute;
  background: #FF6864
}

.faq_pg .ttl_zone::before {
  width: 2px;
  height: 48px;
  top: 0;
  left: 24px
}

.faq_pg .ttl_zone::after {
  width: 48px;
  height: 2px;
  bottom: 0;
  right: 24px
}

.faq_pg .img_lft {
  width: 280px;
  height: 160px;
  border: 4px solid #F0F1F6;
  position: relative;
  overflow: hidden
}

.faq_pg .img_lft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.05)
}

.faq_pg .img_lft::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, #12121205 2px, #12121205 4px);
  pointer-events: none
}

.faq_pg .txt_rht {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq_pg .eyebrow_lbl {
  font-size: 15px;
  line-height: 1.6;
  color: #FF6864;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.faq_pg .main_hdng {
  font-size: 52px;
  line-height: 1.2;
  color: #121212;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0
}

.faq_pg .accordion_wrp {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative
}

.faq_pg .accordion_wrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(270deg, #121212 0%, #FF6864 100%);
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  z-index: 0
}

.faq_pg .accordion_inner {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 48px;
  border: 4px solid #F0F1F6;
  box-shadow: 0 10px 36px -2px #1212121f
}

.faq_pg .accordion_hdng {
  font-size: 38px;
  line-height: 1.2;
  color: #121212;
  font-weight: 700;
  margin: 0 0 48px;
  letter-spacing: -.01em
}

.faq_pg .q_item {
  border-bottom: 2px solid #F0F1F6;
  margin-bottom: 24px;
  padding-bottom: 24px
}

.faq_pg .q_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.faq_pg .q_btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: opacity .52s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.faq_pg .q_btn:hover {
  opacity: .7
}

.faq_pg .q_txt {
  font-size: 22px;
  line-height: 1.6;
  color: #121212;
  font-weight: 600;
  margin: 0;
  flex: 1
}

.faq_pg .q_icn {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid #FF6864;
  border-radius: 4px;
  transition: transform .58s ease-in-out, background .58s ease-in-out
}

.faq_pg .q_icn::before,
.faq_pg .q_icn::after {
  content: '';
  position: absolute;
  background: #FF6864;
  transition: transform .58s ease-in-out, opacity .58s ease-in-out
}

.faq_pg .q_icn::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq_pg .q_icn::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq_pg .q_item.open .q_icn {
  background: #FF6864;
  transform: rotate(90deg)
}

.faq_pg .q_item.open .q_icn::before {
  background: #fff
}

.faq_pg .q_item.open .q_icn::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg)
}

.faq_pg .ans_wrp {
  max-height: 0;
  overflow: hidden;
  transition: max-height .62s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .62s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0
}

.faq_pg .q_item.open .ans_wrp {
  max-height: 800px;
  opacity: 1;
  margin-top: 24px
}

.faq_pg .ans_txt {
  font-size: 18px;
  line-height: 1.9;
  color: #121212;
  margin: 0;
  letter-spacing: .01em
}

.faq_pg .ans_txt+.ans_txt {
  margin-top: 24px
}

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

.faq_pg .split_bg_zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F0F1F6 0%, #F0F1F6 52%, #fff 52%, #fff 100%);
  z-index: 0
}

.faq_pg .split_inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.faq_pg .txt_col {
  padding-right: 24px
}

.faq_pg .split_hdng {
  font-size: 38px;
  line-height: 1.2;
  color: #121212;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.faq_pg .split_para {
  font-size: 18px;
  line-height: 1.9;
  color: #121212;
  margin: 0 0 24px;
  letter-spacing: .01em
}

.faq_pg .split_para:last-child {
  margin-bottom: 0
}

.faq_pg .img_col {
  position: relative
}

.faq_pg .framed_img {
  width: 100%;
  height: 420px;
  border: 4px solid #121212;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 36px -2px #ff68641f
}

.faq_pg .framed_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.faq_pg .pyramid_zone {
  background: #fff;
  padding: 96px 24px;
  position: relative
}

.faq_pg .pyramid_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.faq_pg .pyramid_hdng {
  font-size: 38px;
  line-height: 1.2;
  color: #121212;
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: -.01em
}

.faq_pg .pyramid_chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%
}

.faq_pg .pyramid_layer {
  background: linear-gradient(270deg, #121212 0%, #FF6864 100%);
  padding: 24px 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  transition: transform .48s ease-in-out, box-shadow .48s ease-in-out;
  box-shadow: 0 3px 5px -2px #1212120f
}

.faq_pg .pyramid_layer:hover {
  transform: translateX(12px);
  box-shadow: 0 10px 36px -2px #ff68641f
}

.faq_pg .pyramid_layer:nth-child(1) {
  width: 100%
}

.faq_pg .pyramid_layer:nth-child(2) {
  width: 85%;
  margin: 0 auto
}

.faq_pg .pyramid_layer:nth-child(3) {
  width: 70%;
  margin: 0 auto
}

.faq_pg .pyramid_layer:nth-child(4) {
  width: 55%;
  margin: 0 auto
}

.faq_pg .layer_lbl {
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em
}

.faq_pg .layer_num {
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  margin: 0;
  opacity: .3;
  letter-spacing: -.02em
}

.faq_pg .quote_mark {
  font-size: 68px;
  line-height: 1;
  color: #FF6864;
  opacity: .15;
  position: absolute;
  font-weight: 700;
  font-family: Georgia, serif;
  pointer-events: none
}

.faq_pg .split_bg_zone .quote_mark {
  top: 48px;
  left: 48px
}

@media (max-width: 900px) {
  .faq_pg .ttl_zone {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px
  }

  .faq_pg .img_lft {
    width: 100%;
    height: 240px
  }

  .faq_pg .main_hdng {
    font-size: 38px
  }

  .faq_pg .accordion_inner {
    padding: 24px
  }

  .faq_pg .accordion_hdng {
    font-size: 22px;
    margin-bottom: 24px
  }

  .faq_pg .q_txt {
    font-size: 18px
  }

  .faq_pg .ans_txt {
    font-size: 15px
  }

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

  .faq_pg .txt_col {
    padding-right: 0
  }

  .faq_pg .split_hdng {
    font-size: 22px
  }

  .faq_pg .split_para {
    font-size: 15px
  }

  .faq_pg .framed_img {
    height: 320px
  }

  .faq_pg .pyramid_hdng {
    font-size: 22px
  }

  .faq_pg .pyramid_layer {
    padding: 12px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .faq_pg .layer_lbl {
    font-size: 18px
  }

  .faq_pg .layer_num {
    font-size: 38px
  }

  .faq_pg .pyramid_layer:nth-child(2),
  .faq_pg .pyramid_layer:nth-child(3),
  .faq_pg .pyramid_layer:nth-child(4) {
    width: 100%
  }
}

@media (max-width: 600px) {
  .faq_pg .ttl_zone::before {
    left: 12px
  }

  .faq_pg .ttl_zone::after {
    right: 12px
  }

  .faq_pg .accordion_wrp {
    padding: 48px 12px
  }

  .faq_pg .accordion_inner {
    padding: 24px 12px
  }

  .faq_pg .split_bg_zone {
    padding: 48px 12px
  }

  .faq_pg .pyramid_zone {
    padding: 48px 12px
  }

  .faq_pg .q_btn {
    gap: 12px
  }

  .faq_pg .q_icn {
    width: 28px;
    height: 28px
  }

  .faq_pg .q_icn::before {
    width: 12px
  }

  .faq_pg .q_icn::after {
    height: 12px
  }
}

.opnng {
  background: #fff;
  color: #121212;
  overflow-x: clip
}

.opnng * {
  box-sizing: border-box
}

.opnng .ttl_zone {
  position: relative;
  background: #F0F1F6;
  padding: 96px 24px;
  overflow: hidden
}

.opnng .ttl_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #121212, #FF6864);
  opacity: .03;
  pointer-events: none
}

.opnng .ttl_zone::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 24" preserveAspectRatio="none"><path d="M0,0 L50,8 L100,4 L150,12 L200,6 L250,14 L300,8 L350,16 L400,10 L450,18 L500,12 L550,20 L600,14 L650,22 L700,16 L750,20 L800,14 L850,18 L900,12 L950,16 L1000,10 L1050,14 L1100,8 L1150,12 L1200,6 L1200,24 L0,24 Z" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: 100% 100%
}

.opnng .ttl_inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.opnng .ttl_shp {
  position: absolute;
  border: 2px solid #FF6864;
  opacity: .12;
  pointer-events: none;
  border-radius: 4px
}

.opnng .ttl_shp:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 48px;
  right: 96px;
  transform: rotate(15deg)
}

.opnng .ttl_shp:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 96px;
  left: 48px;
  transform: rotate(-22deg);
  border-radius: 36px
}

.opnng .ttl_shp:nth-child(3) {
  width: 90px;
  height: 90px;
  top: 156px;
  left: 240px;
  border-color: #121212
}

.opnng .ttl_main_hdng {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 920px;
  animation: ttl_drop .58s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes ttl_drop {
  from {
    opacity: 0;
    transform: translateY(-48px)
  }

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

.opnng .ttl_thss {
  font-size: 22px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 0 12px;
  opacity: 0;
  animation: ttl_drop .58s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s forwards
}

.opnng .ttl_thss:last-of-type {
  margin: 0
}

.opnng .exp_wrap {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.opnng .exp_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F0F1F6 0%, #fff 100%);
  pointer-events: none
}

.opnng .exp_ctnr {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.opnng .exp_txt_blck {
  padding: 24px 0
}

.opnng .exp_hdng {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.opnng .exp_prgrph {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px
}

.opnng .exp_prgrph:last-child {
  margin: 0
}

.opnng .exp_nme {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 4px;
  color: #FF6864
}

.opnng .exp_rle {
  font-size: 15px;
  color: #121212;
  opacity: .7;
  margin: 0
}

.opnng .exp_img_wrp {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 36px -2px #ff68641f
}

.opnng .exp_img_wrp::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: #FF6864;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  z-index: 2
}

.opnng .exp_img_wrp::after {
  content: '1';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  z-index: 3
}

.opnng .exp_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.05);
  transition: transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opnng .exp_img_wrp:hover .exp_img {
  transform: scale(1.04)
}

.opnng .inv_sect {
  padding: 96px 24px;
  background: #121212;
  color: #fff;
  position: relative
}

.opnng .inv_sect::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 24" preserveAspectRatio="none"><path d="M0,6 L50,12 L100,8 L150,14 L200,10 L250,16 L300,12 L350,18 L400,14 L450,20 L500,16 L550,22 L600,18 L650,20 L700,16 L750,18 L800,14 L850,16 L900,12 L950,14 L1000,10 L1050,12 L1100,8 L1150,10 L1200,6 L1200,24 L0,24 Z" fill="%23F0F1F6"/></svg>') no-repeat bottom;
  background-size: 100% 100%
}

.opnng .inv_ctnr {
  max-width: 1320px;
  margin: 0 auto;
  position: relative
}

.opnng .inv_hdng {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 48px;
  text-align: center;
  letter-spacing: -.015em
}

.opnng .inv_grd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.opnng .inv_crd {
  background: #ffffff0a;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #ffffff14;
  position: relative;
  transition: border-color .48s ease-in-out, box-shadow .48s ease-in-out
}

.opnng .inv_crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6864;
  transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opnng .inv_crd::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  background: #FF6864;
  transition: height .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .55s
}

.opnng .inv_crd:hover::before {
  width: 100%
}

.opnng .inv_crd:hover::after {
  height: 100%
}

.opnng .inv_crd:hover {
  border-color: #ff68644d;
  box-shadow: 0 6px 14px -2px #ff686417
}

.opnng .inv_crd_ttl {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 12px;
  color: #FF6864
}

.opnng .inv_crd_txt {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #ffffffd9
}

.opnng .prf_area {
  padding: 96px 24px;
  background: #F0F1F6;
  position: relative
}

.opnng .prf_ctnr {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 48px;
  align-items: center
}

.opnng .prf_img_side {
  flex: 0 0 45%;
  position: relative
}

.opnng .prf_img_wrp {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 10px 36px -2px #1212121f
}

.opnng .prf_img_wrp::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  background: #121212;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.opnng .prf_img_wrp::after {
  content: '2';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  z-index: 3
}

.opnng .prf_img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.05)
}

.opnng .prf_txt_side {
  flex: 1
}

.opnng .prf_hdng {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.opnng .prf_prgrph {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px
}

.opnng .prf_prgrph:last-child {
  margin: 0
}

.opnng .prf_arr {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  right: -64px;
  transform: translateY(-50%);
  opacity: .15;
  pointer-events: none
}

.opnng .prf_arr svg {
  width: 100%;
  height: 100%;
  fill: #FF6864
}

.opnng .lng_trm_sect {
  padding: 96px 24px;
  background: linear-gradient(180deg, #fff 0%, #F0F1F6 100%);
  position: relative
}

.opnng .lng_trm_ctnr {
  max-width: 1320px;
  margin: 0 auto
}

.opnng .lng_trm_hdng {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 48px;
  letter-spacing: -.015em;
  max-width: 820px
}

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

.opnng .lng_trm_itm {
  display: flex;
  gap: 24px;
  align-items: start
}

.opnng .lng_trm_icn {
  flex: 0 0 64px;
  height: 64px;
  background: #FF6864;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px -2px #ff68640f;
  position: relative
}

.opnng .lng_trm_icn::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #121212;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff
}

.opnng .lng_trm_itm:nth-child(1) .lng_trm_icn::after {
  content: '3'
}

.opnng .lng_trm_itm:nth-child(2) .lng_trm_icn::after {
  content: '4'
}

.opnng .lng_trm_itm:nth-child(3) .lng_trm_icn::after {
  content: '5'
}

.opnng .lng_trm_itm:nth-child(4) .lng_trm_icn::after {
  content: '6'
}

.opnng .lng_trm_icn svg {
  width: 32px;
  height: 32px;
  fill: #fff
}

.opnng .lng_trm_txt {
  flex: 1
}

.opnng .lng_trm_ttl {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 12px
}

.opnng .lng_trm_dsc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #121212;
  opacity: .85
}

.opnng .hst_blck {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.opnng .hst_ctnr {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center
}

.opnng .hst_img_wrp {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 14px -2px #12121217
}

.opnng .hst_img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.05)
}

.opnng .hst_txt_blck {
  padding: 24px 0
}

.opnng .hst_hdng {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.opnng .hst_prgrph {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px
}

.opnng .hst_prgrph:last-child {
  margin: 0
}

.opnng .hst_fnl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #F0F1F6;
  border-radius: 36px;
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  box-shadow: inset 0 2px 8px #ff686414;
  transition: box-shadow .5s ease-in-out, background .5s ease-in-out
}

.opnng .hst_fnl:hover {
  background: #FF6864;
  color: #fff;
  box-shadow: inset 0 2px 12px #12121226
}

.opnng .hst_fnl svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}

.opnng .fnl_chart {
  max-width: 420px;
  margin: 48px 0 0;
  position: relative
}

.opnng .fnl_stg {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  position: relative
}

.opnng .fnl_stg:last-child {
  margin: 0
}

.opnng .fnl_lbl {
  flex: 0 0 140px;
  font-size: 15px;
  font-weight: 600
}

.opnng .fnl_br {
  flex: 1;
  height: 36px;
  background: #F0F1F6;
  border-radius: 4px;
  position: relative;
  overflow: hidden
}

.opnng .fnl_fll {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, #FF6864, #121212);
  border-radius: 4px;
  transition: width .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opnng .fnl_stg:nth-child(1) .fnl_fll {
  width: 88%
}

.opnng .fnl_stg:nth-child(2) .fnl_fll {
  width: 72%
}

.opnng .fnl_stg:nth-child(3) .fnl_fll {
  width: 56%
}

.opnng .fnl_stg:nth-child(4) .fnl_fll {
  width: 34%
}

@media (max-width: 1200px) {
  .opnng .ttl_main_hdng {
    font-size: 52px
  }

  .opnng .exp_ctnr,
  .opnng .prf_ctnr,
  .opnng .lng_trm_grd {
    grid-template-columns: 1fr
  }

  .opnng .prf_img_side {
    flex: 0 0 100%
  }

  .opnng .inv_grd {
    grid-template-columns: 1fr
  }

  .opnng .hst_ctnr {
    grid-template-columns: 1fr
  }
}

@media (max-width: 900px) {
  .opnng .ttl_main_hdng {
    font-size: 38px
  }

  .opnng .ttl_zone,
  .opnng .exp_wrap,
  .opnng .inv_sect,
  .opnng .prf_area,
  .opnng .lng_trm_sect,
  .opnng .hst_blck {
    padding: 48px 24px
  }

  .opnng .inv_hdng,
  .opnng .lng_trm_hdng {
    font-size: 38px
  }

  .opnng .exp_hdng,
  .opnng .prf_hdng,
  .opnng .hst_hdng {
    font-size: 22px
  }

  .opnng .ttl_shp:nth-child(1) {
    width: 120px;
    height: 120px;
    right: 24px
  }

  .opnng .prf_arr {
    display: none
  }
}

@media (max-width: 600px) {
  .opnng .ttl_main_hdng {
    font-size: 22px
  }

  .opnng .ttl_thss {
    font-size: 15px
  }

  .opnng .exp_prgrph,
  .opnng .prf_prgrph,
  .opnng .hst_prgrph {
    font-size: 15px
  }

  .opnng .inv_hdng,
  .opnng .lng_trm_hdng {
    font-size: 22px
  }

  .opnng .exp_img,
  .opnng .prf_img,
  .opnng .hst_img {
    height: 320px
  }

  .opnng .ttl_shp:nth-child(2),
  .opnng .ttl_shp:nth-child(3) {
    display: none
  }
}

.success_page {
  background: linear-gradient(to left, #121212, #FF6864);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.success_page .confirm_wrapper {
  background: #fff;
  border-radius: 36px;
  padding: 96px 48px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 36px -2px #ff68641f
}

.success_page .icon_circle {
  width: 120px;
  height: 120px;
  background: #F0F1F6;
  border-radius: 36px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success_page .icon_circle::before {
  content: '';
  width: 56px;
  height: 28px;
  border-left: 6px solid #FF6864;
  border-bottom: 6px solid #FF6864;
  transform: rotate(-45deg) translateY(-8px)
}

.success_page .main_heading {
  font-size: 52px;
  line-height: 1.2;
  color: #121212;
  margin: 0 0 24px;
  font-weight: 700
}

.success_page .description_text {
  font-size: 18px;
  line-height: 1.6;
  color: #121212;
  margin: 0 0 48px;
  opacity: .8
}

.success_page .action_link {
  display: inline-block;
  background: #121212;
  color: #fff;
  font-size: 18px;
  padding: 24px 48px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 14px -2px #12121217
}

.success_page .action_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px -2px #1212121f
}

.success_page .secondary_link {
  display: inline-block;
  color: #FF6864;
  font-size: 15px;
  margin: 24px 0 0;
  text-decoration: none;
  transition: opacity .48s ease-in-out
}

.success_page .secondary_link:hover {
  opacity: .7
}

@media (max-width: 900px) {
  .success_page .confirm_wrapper {
    padding: 48px 24px
  }

  .success_page .main_heading {
    font-size: 38px
  }

  .success_page .icon_circle {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px
  }

  .success_page .icon_circle::before {
    width: 44px;
    height: 22px;
    border-left: 5px solid #FF6864;
    border-bottom: 5px solid #FF6864
  }

  .success_page .action_link {
    padding: 24px 36px;
    font-size: 15px
  }
}

@media (max-width: 600px) {
  .success_page .main_heading {
    font-size: 22px
  }

  .success_page .description_text {
    font-size: 15px
  }

  .success_page .confirm_wrapper {
    padding: 48px 12px
  }

  .success_page .action_link {
    width: 100%;
    padding: 24px 12px
  }
}