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

body {
  margin: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Bitter', Georgia, serif
}

.brand_bar {
  background: linear-gradient(135deg, #C65151 0%, #FF8C1A 60%, #C65151 100%);
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand_contact_strip {
  display: flex;
  align-items: center;
  gap: 28px
}

.brand_contact_strip a {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  font-weight: 300;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.brand_contact_strip a:focus {
  outline: none;
  background: #ffffff26;
  border-radius: 6px
}

.brand_contact_strip a:hover {
  opacity: .78
}

.brand_tagline {
  font-size: 14px;
  color: #ffffffd1;
  font-weight: 300;
  line-height: 1.4
}

.hd_shell {
  background: #fff;
  border-bottom: 2px solid #FF8C1A;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.hd_identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 28px 16px;
  max-width: 1200px;
  margin: 0 auto
}

.logo_mount {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 3px 5px 0 #c6515112 1px 9px 40px 0 #c651511a;
  border: 2px solid #ff8c1a47;
  padding: 8px
}

.logo_mount img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block
}

.brand_name_text {
  margin: 16px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b0f0f;
  letter-spacing: 0;
  text-align: center
}

.brand_name_text span {
  color: #C65151
}

.primary_nav_mount {
  background: #fff7f2;
  border-top: 1px solid #c651511f
}

.primary_nav_hold {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px
}

.primary_nav_hold nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center
}

.primary_nav_hold nav a {
  display: inline-block;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #2a1010;
  text-decoration: none;
  padding: 16px;
  border-radius: 6px;
  position: relative;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.primary_nav_hold nav a:hover {
  color: #C65151;
  background: #c6515112
}

.primary_nav_hold nav a:focus {
  outline: none;
  border: 2px solid #C65151;
  background: #c651510f
}

.nav_action_link {
  display: inline-block;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #C65151;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  box-shadow: 1px 3px 5px 0 #c6515112;
  transition: filter .38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .38s ease-in-out;
  white-space: nowrap
}

.nav_action_link:hover {
  filter: brightness(1.1);
  box-shadow: 1px 4px 14px 0 #c6515114
}

.nav_action_link:focus {
  outline: none;
  border: 2px solid #FF8C1A;
  background: #b84040
}

@media (max-width: 1024px) {
  .primary_nav_hold {
    justify-content: center
  }

  .primary_nav_hold nav {
    justify-content: center
  }
}

@media (max-width: 640px) {
  .brand_bar {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .brand_contact_strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px
  }

  .brand_name_text {
    font-size: 20px
  }

  .primary_nav_hold nav a {
    padding: 16px 8px
  }
}

@media (max-width: 360px) {
  .brand_contact_strip {
    gap: 8px
  }

  .nav_action_link {
    padding: 16px
  }
}

.ft_shell {
  background: #fff;
  border-top: 2px solid #C65151
}

.ft_top_accent {
  height: 4px;
  background: linear-gradient(90deg, #C65151 0%, #FF8C1A 50%, #00F171 100%)
}

.ft_grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px
}

.ft_col_brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

.ft_logo_mount {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 4px 14px 0 #c6515114;
  border: 2px solid #c6515133;
  padding: 8px
}

.ft_logo_mount img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block
}

.ft_brand_name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b0f0f
}

.ft_brand_name span {
  color: #C65151
}

.ft_brand_desc {
  font-size: 14px;
  line-height: 1.7;
  color: #4a2a2a;
  font-weight: 300
}

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

.ft_col_label {
  font-size: 14px;
  font-weight: 700;
  color: #C65151;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #c651512e
}

.ft_col_nav a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.7;
  color: #2a1010;
  text-decoration: none;
  font-weight: 400;
  border-radius: 6px;
  padding: 4px 8px;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s ease-in-out
}

.ft_col_nav a:hover {
  color: #C65151;
  background: #c651510f
}

.ft_col_nav a:focus {
  outline: none;
  border: 2px solid #C65151;
  background: #c651510d
}

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

.ft_contact_item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ft_contact_label {
  font-size: 14px;
  font-weight: 700;
  color: #4a2a2a;
  line-height: 1.4
}

.ft_contact_val {
  font-size: 14px;
  line-height: 1.7;
  color: #2a1010;
  font-weight: 300
}

.ft_contact_val a {
  color: #C65151;
  text-decoration: none;
  border-radius: 6px;
  padding: 0 4px;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s ease-in-out
}

.ft_contact_val a:hover {
  color: #b84040;
  background: #c6515112
}

.ft_contact_val a:focus {
  outline: none;
  border: 2px solid #C65151
}

.ft_bottom_bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #c6515124
}

.ft_copy {
  font-size: 14px;
  color: #4a2a2a;
  font-weight: 300;
  line-height: 1.4
}

.ft_legal_links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center
}

.ft_legal_links a {
  font-size: 14px;
  color: #4a2a2a;
  text-decoration: none;
  font-weight: 300;
  line-height: 1.4;
  border-radius: 6px;
  padding: 4px 8px;
  border: 1px solid #c6515138;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s ease-in-out, background .45s ease-in-out
}

.ft_legal_links a:hover {
  color: #C65151;
  border-color: #C65151;
  background: #c651510d
}

.ft_legal_links a:focus {
  outline: none;
  border-color: #C65151;
  background: #c6515112
}

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

  .ft_col_brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap
  }
}

@media (max-width: 640px) {
  .ft_grid {
    grid-template-columns: 1fr;
    padding: 28px 28px 16px
  }

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

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

.ck_bar {
  display: none;
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
  max-width: 800px;
  background: #fff;
  border: 2px solid #C65151;
  border-radius: 10px;
  box-shadow: 1px 9px 40px 0 #c651511a;
  z-index: 1200;
  padding: 28px;
  font-family: 'Bitter', Georgia, serif
}

.ck_bar_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap
}

.ck_desc {
  font-size: 14px;
  line-height: 1.7;
  color: #2a1010;
  font-weight: 300;
  flex: 1;
  min-width: 200px
}

.ck_desc a {
  color: #C65151;
  text-decoration: underline
}

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

.ck_accept_btn {
  background: #C65151;
  color: #fff;
  border: 2px solid #C65151;
  border-radius: 6px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px 28px;
  cursor: pointer;
  transition: filter .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.ck_accept_btn:hover {
  filter: brightness(1.1)
}

.ck_accept_btn:focus {
  outline: none;
  border-color: #FF8C1A
}

.ck_deny_btn {
  background: transparent;
  color: #C65151;
  border: 2px solid #C65151;
  border-radius: 6px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 16px 28px;
  cursor: pointer;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s ease-in-out
}

.ck_deny_btn:hover {
  background: #c6515112;
  color: #b84040
}

.ck_deny_btn:focus {
  outline: none;
  background: #c651511a
}

.ck_manage_btn {
  background: transparent;
  color: #4a2a2a;
  border: 2px solid #c651514d;
  border-radius: 6px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  padding: 16px;
  cursor: pointer;
  transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s ease-in-out
}

.ck_manage_btn:hover {
  border-color: #C65151;
  background: #c651510a
}

.ck_manage_btn:focus {
  outline: none;
  border-color: #C65151
}

.ck_pref_panel {
  display: none;
  margin-top: 28px;
  border-top: 1px solid #c651512e;
  padding-top: 16px
}

.ck_toggle_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.ck_toggle_label {
  font-size: 14px;
  color: #2a1010;
  line-height: 1.7;
  font-weight: 400
}

.ck_toggle_switch {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0
}

.ck_toggle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.ck_toggle_track {
  position: absolute;
  inset: 0;
  background: #c651512e;
  border-radius: 32px;
  cursor: pointer;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ck_toggle_switch input:checked+.ck_toggle_track {
  background: #00F171
}

.ck_toggle_track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 1px 3px 5px 0 #c6515112;
  transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.ck_toggle_switch input:checked+.ck_toggle_track::after {
  transform: translateX(18px)
}

.ck_toggle_switch input:focus+.ck_toggle_track {
  border: 2px solid #C65151
}

.ck_policy_note {
  font-size: 14px;
  color: #4a2a2a;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
  text-align: center
}

.ck_policy_note a {
  color: #C65151;
  text-decoration: underline
}

.agreement-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px;
  color: #2a1f1f;
  background: #fff
}

.agreement-text h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #1b0e0e;
  margin-bottom: 28px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 3px solid #C65151
}

.agreement-text h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #1b0e0e;
  margin-top: 56px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #C65151;
  border-bottom: 1px solid #c6515126;
  padding-bottom: 8px
}

.agreement-text h3 {
  font-size: 26px;
  line-height: 1.4;
  color: #2a1010;
  margin-top: 28px;
  margin-bottom: 16px
}

.agreement-text h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #2a1010;
  margin-top: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.agreement-text h5 {
  font-size: 20px;
  line-height: 1.4;
  color: #3a1a1a;
  margin-top: 16px;
  margin-bottom: 8px
}

.agreement-text h6 {
  font-size: 14px;
  line-height: 1.4;
  color: #5a3a3a;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.agreement-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #2a1f1f;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch
}

.agreement-text strong,
.agreement-text b {
  font-weight: 700;
  color: #1b0e0e
}

.agreement-text em,
.agreement-text i {
  font-style: italic;
  color: #3a2020
}

.agreement-text a {
  color: #C65151;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .38s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .45s ease-in-out;
  text-decoration-color: #c6515166
}

.agreement-text a:hover {
  color: #a03a3a;
  text-decoration-color: #a03a3a
}

.agreement-text a:focus-visible {
  outline: 2px solid #FF8C1A;
  outline-offset: 2px;
  border-radius: 6px
}

.agreement-text table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.agreement-text thead {
  background: #C65151;
  color: #fff
}

.agreement-text thead th {
  padding: 16px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  color: #fff;
  border: none
}

.agreement-text tbody tr {
  border-bottom: 1px solid #c651511f;
  transition: background .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.agreement-text tbody tr:last-child {
  border-bottom: none
}

.agreement-text tbody tr:nth-child(even) {
  background: #c651510a
}

.agreement-text tbody tr:hover {
  background: #ff8c1a12
}

.agreement-text td {
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #2a1f1f;
  vertical-align: top;
  border-right: 1px solid #c6515114
}

.agreement-text td:last-child {
  border-right: none
}

.agreement-text th {
  padding: 16px;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: top
}

.agreement-text div {
  margin-bottom: 16px
}

@media (max-width: 1024px) {
  .agreement-text {
    padding: 56px 28px
  }

  .agreement-text h1 {
    font-size: 36px
  }

  .agreement-text h2 {
    font-size: 26px;
    margin-top: 56px
  }
}

@media (max-width: 640px) {
  .agreement-text {
    padding: 28px 16px
  }

  .agreement-text h1 {
    font-size: 36px
  }

  .agreement-text h2 {
    font-size: 26px;
    margin-top: 28px
  }

  .agreement-text h3 {
    font-size: 20px
  }

  .agreement-text p {
    font-size: 20px;
    max-width: 100%
  }

  .agreement-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 360px) {
  .agreement-text {
    padding: 16px 8px
  }

  .agreement-text h1 {
    font-size: 26px
  }

  .agreement-text h2 {
    font-size: 20px
  }

  .agreement-text h3,
  .agreement-text h4,
  .agreement-text h5 {
    font-size: 20px
  }

  .agreement-text p {
    font-size: 14px
  }
}

.abt_us {
  background: #fff;
  overflow-x: clip;
  padding: 0
}

.abt_us .pg_schema {
  display: none
}

.abt_us .top_strip {
  background: linear-gradient(180deg, #fff7f0 0%, #fff 100%);
  padding: 56px 16px;
  position: relative;
  overflow: hidden
}

.abt_us .top_strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #c6515112 0%, transparent 65%);
  animation: glow_in 4s ease-in-out infinite alternate;
  pointer-events: none
}

@keyframes glow_in {
  from {
    opacity: .5
  }

  to {
    opacity: 1
  }
}

.abt_us .top_strip_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.abt_us .txt_zone {
  text-align: center;
  max-width: 720px
}

.abt_us .label_tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #C65151;
  background: #c6515114;
  padding: 4px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: inset 1px 3px 5px 0 #c6515112
}

.abt_us .pg_head {
  font-size: 66px;
  line-height: 1.1;
  color: #1e1410;
  margin: 0 0 16px
}

.abt_us .pg_head .grad_word {
  background: linear-gradient(200deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline
}

.abt_us .pg_sub {
  font-size: 20px;
  line-height: 1.7;
  color: #3d2b1f;
  margin: 0
}

.abt_us .dot_path {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 8px
}

.abt_us .dot_path span {
  width: 6px;
  height: 6px;
  border-radius: 32px;
  background: #C65151;
  opacity: .25;
  display: inline-block
}

.abt_us .dot_path span:nth-child(3) {
  opacity: .5;
  width: 8px;
  height: 8px
}

.abt_us .dot_path span:nth-child(5) {
  opacity: .7
}

.abt_us .dot_path span:nth-child(7) {
  opacity: .35
}

.abt_us .img_zone {
  width: 100%;
  max-width: 860px;
  position: relative
}

.abt_us .img_zone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #c651512e;
  border-radius: 10px;
  pointer-events: none;
  z-index: 0
}

.abt_us .hero_img_wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 9px 40px 0 #c651511a;
  z-index: 1
}

.abt_us .hero_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt_us .hero_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #1e141061 100%);
  pointer-events: none
}

.abt_us .img_blur_fore {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
  mask-image: linear-gradient(to top, #0009 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #0009 0%, transparent 100%)
}

.abt_us .divider_band {
  height: 8px;
  background: linear-gradient(90deg, #FF8C1A 0%, #C65151 50%, transparent 100%);
  margin: 0
}

.abt_us .about_body {
  background: #fff;
  padding: 56px 16px;
  position: relative
}

.abt_us .about_body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #ff8c1a0f 0%, transparent 100%);
  pointer-events: none
}

.abt_us .body_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: start
}

.abt_us .side_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt_us .stat_card {
  background: #fff8f4;
  border-radius: 10px;
  padding: 16px;
  border-top: 3px solid #C65151;
  box-shadow: 1px 4px 14px 0 #c6515114;
  transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt_us .stat_card:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-3px)
}

.abt_us .stat_num {
  font-size: 36px;
  line-height: 1.1;
  color: #C65151;
  display: block
}

.abt_us .stat_lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #5a3e35
}

.abt_us .right_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right
}

.abt_us .accent_block {
  background: linear-gradient(200deg, #ff8c1a1a, #c6515114, #00f1710f);
  border-radius: 10px;
  padding: 16px;
  border-right: 3px solid #FF8C1A;
  box-shadow: 1px 3px 5px 0 #ff8c1a12
}

.abt_us .accent_block p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d2b1f;
  margin: 0
}

.abt_us .mid_col {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.abt_us .mid_head {
  font-size: 36px;
  line-height: 1.1;
  color: #1e1410;
  margin: 0 0 8px;
  position: relative;
  display: inline-block
}

.abt_us .mid_head::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(200deg, #FF8C1A, #C65151, #00F171);
  border-radius: 6px;
  margin-top: 4px;
  animation: underline_draw .55s cubic-bezier(0.16, 1, 0.3, 1) .3s forwards
}

@keyframes underline_draw {
  to {
    width: 100%
  }
}

.abt_us .mid_para {
  font-size: 20px;
  line-height: 1.7;
  color: #3d2b1f;
  margin: 0
}

.abt_us .mid_para_sm {
  font-size: 14px;
  line-height: 1.7;
  color: #5a3e35;
  margin: 0
}

.abt_us .list_items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt_us .list_items li {
  font-size: 14px;
  line-height: 1.7;
  color: #3d2b1f;
  padding: 8px 8px 8px 16px;
  border-left: 3px solid #C65151;
  background: #c651510a;
  border-radius: 0 6px 6px 0
}

.abt_us .two_imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.abt_us .sm_img_wrap {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.abt_us .sm_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt_us .sm_img_wrap:hover img {
  transform: scale(1.04)
}

.abt_us .team_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.abt_us .portrait_wrap {
  width: 80px;
  min-width: 80px;
  aspect-ratio: 7/9;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 1px 3px 5px 0 #c6515112;
  flex-shrink: 0
}

.abt_us .portrait_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.abt_us .person_info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.abt_us .person_name {
  font-size: 20px;
  line-height: 1.4;
  color: #1e1410;
  margin: 0
}

.abt_us .person_role {
  font-size: 14px;
  line-height: 1.4;
  color: #C65151
}

.abt_us .person_quote {
  font-size: 14px;
  line-height: 1.7;
  color: #5a3e35;
  margin: 0
}

.abt_us .img_single_wide {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 9px 40px 0 #c651511a
}

.abt_us .img_single_wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt_us .cta_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.abt_us .btn_prim {
  background: #C65151;
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 1px 4px 14px 0 #c6515114;
  transition: brightness .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block
}

.abt_us .btn_prim:hover {
  filter: brightness(1.1);
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-2px)
}

.abt_us .btn_prim:focus {
  outline: 2px solid #FF8C1A;
  outline-offset: 2px
}

.abt_us .btn_sec {
  background: transparent;
  color: #C65151;
  border: 2px solid #C65151;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: background .45s ease-in-out, color .45s ease-in-out;
  text-decoration: none;
  display: inline-block
}

.abt_us .btn_sec:hover {
  background: #c6515114
}

.abt_us .btn_sec:focus {
  outline: 2px solid #00F171;
  outline-offset: 2px
}

.abt_us .corner_deco {
  position: absolute;
  pointer-events: none
}

.abt_us .top_strip .corner_deco_tl {
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #c651514d;
  border-left: 2px solid #c651514d
}

.abt_us .top_strip .corner_deco_br {
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #ff8c1a4d;
  border-right: 2px solid #ff8c1a4d
}

.abt_us .shake_cue {
  animation: gentle_shake 5s 2s ease-in-out infinite;
  display: inline-block
}

@keyframes gentle_shake {

  0%,
  88%,
  100% {
    transform: translateX(0)
  }

  90% {
    transform: translateX(-3px)
  }

  92% {
    transform: translateX(3px)
  }

  94% {
    transform: translateX(-2px)
  }

  96% {
    transform: translateX(2px)
  }

  98% {
    transform: translateX(0)
  }
}

@media (max-width: 1024px) {
  .abt_us .body_inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 28px
  }

  .abt_us .right_col {
    display: none
  }

  .abt_us .pg_head {
    font-size: 66px
  }
}

@media (max-width: 640px) {
  .abt_us .pg_head {
    font-size: 36px
  }

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

  .abt_us .side_col {
    flex-direction: row;
    flex-wrap: wrap
  }

  .abt_us .stat_card {
    flex: 1 1 140px
  }

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

  .abt_us .top_strip {
    padding: 28px 16px
  }

  .abt_us .about_body {
    padding: 28px 16px
  }
}

@media (max-width: 360px) {
  .abt_us .pg_head {
    font-size: 26px
  }

  .abt_us .pg_sub {
    font-size: 14px
  }

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

.lrn_prog {
  background: #fff;
  overflow-x: clip;
  position: relative
}

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

.lrn_prog ::selection {
  background: linear-gradient(135deg, #C65151, #00F171);
  color: #111
}

.lrn_prog a {
  text-decoration: none
}

.lrn_prog .prog_title {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 560px;
  position: relative
}

.lrn_prog .prog_title .txt_side {
  padding: 56px 56px 56px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  background: #fff;
  z-index: 1
}

.lrn_prog .prog_title .txt_side .corner_deco {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 80px;
  height: 80px;
  pointer-events: none
}

.lrn_prog .prog_title .txt_side .corner_deco span {
  display: block;
  position: absolute;
  border: 1px solid #C65151;
  opacity: .18
}

.lrn_prog .prog_title .txt_side .corner_deco span:nth-child(1) {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px
}

.lrn_prog .prog_title .txt_side .corner_deco span:nth-child(2) {
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px
}

.lrn_prog .prog_title .txt_side .corner_deco span:nth-child(3) {
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px
}

.lrn_prog .prog_title .txt_side .corner_deco span:nth-child(4) {
  top: 30px;
  left: 30px;
  width: 20px;
  height: 20px
}

.lrn_prog .prog_title .txt_side .pre_label {
  font-size: 14px;
  line-height: 1.4;
  color: #C65151;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.lrn_prog .prog_title .txt_side h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #1a1300;
  font-weight: 800;
  margin: 0
}

.lrn_prog .prog_title .txt_side h1 .grad_word {
  background: linear-gradient(225deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline
}

.lrn_prog .prog_title .txt_side .sub_desc {
  font-size: 20px;
  line-height: 1.7;
  color: #3a2a0a;
  max-width: 480px
}

.lrn_prog .prog_title .txt_side .enroll_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C65151;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 1px 4px 14px 0 #c6515114
}

.lrn_prog .prog_title .txt_side .enroll_btn:hover {
  background: #b04040;
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-3px);
  filter: brightness(1.08)
}

.lrn_prog .prog_title .txt_side .enroll_btn:active {
  background: #fff;
  color: #C65151;
  border: 2px solid #C65151
}

.lrn_prog .prog_title .img_side {
  position: relative;
  overflow: hidden
}

.lrn_prog .prog_title .img_side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.12) saturate(1.1) brightness(0.97);
  mix-blend-mode: normal
}

.lrn_prog .prog_title .img_side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, #ff8c1a2e 0%, #c651511f 50%, #00f17114 100%);
  pointer-events: none
}

.lrn_prog .prog_title .img_side .deco_strip {
  position: absolute;
  bottom: 28px;
  left: 16px;
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #FF8C1A, #C65151);
  opacity: .5;
  border-radius: 0;
  pointer-events: none
}

.lrn_prog .divider_double {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px
}

.lrn_prog .divider_double span {
  display: block;
  height: 1px;
  background: #d4a87a;
  opacity: .35
}

.lrn_prog .mod_grid {
  padding: 56px 28px;
  background: radial-gradient(ellipse at 60% 40%, #fff8f0 0%, #ffe8cc 100%);
  position: relative
}

.lrn_prog .mod_grid .zigzag_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.lrn_prog .mod_grid .zigzag_bg svg {
  width: 100%;
  height: 100%;
  opacity: .045
}

.lrn_prog .mod_grid .grid_head {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px
}

.lrn_prog .mod_grid .grid_head h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #1a1300;
  font-weight: 800;
  margin: 0;
  position: relative;
  display: inline-block
}

.lrn_prog .mod_grid .grid_head h2 .grad_word {
  background: linear-gradient(225deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lrn_prog .mod_grid .grid_head h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #C65151, #FF8C1A);
  animation: underline_draw .55s cubic-bezier(0.16, 1, 0.3, 1) .3s forwards
}

@keyframes underline_draw {
  to {
    width: 100%
  }
}

.lrn_prog .mod_grid .grid_head .badge_count {
  font-size: 14px;
  color: #C65151;
  font-weight: 700;
  background: #c6515114;
  padding: 8px 16px;
  border-radius: 32px;
  white-space: nowrap;
  flex-shrink: 0
}

.lrn_prog .mod_grid .modules_list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.lrn_prog .mod_grid .mod_card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 1px 3px 5px 0 #c6515112;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  border-top: 1px solid #c651511a
}

.lrn_prog .mod_grid .mod_card:nth-child(1) {
  border-left-color: #C65151;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .1s both
}

.lrn_prog .mod_grid .mod_card:nth-child(2) {
  border-left-color: #FF8C1A;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .2s both
}

.lrn_prog .mod_grid .mod_card:nth-child(3) {
  border-left-color: #00F171;
  border-top-color: #00f17126;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .3s both
}

.lrn_prog .mod_grid .mod_card:nth-child(4) {
  border-left-color: #FF8C1A;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .4s both
}

.lrn_prog .mod_grid .mod_card:nth-child(5) {
  border-left-color: #C65151;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .5s both
}

.lrn_prog .mod_grid .mod_card:nth-child(6) {
  border-left-color: #00F171;
  border-top-color: #00f17126;
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .6s both
}

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

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

.lrn_prog .mod_grid .mod_card:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-5px)
}

.lrn_prog .mod_grid .mod_card .card_num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  color: #c651511f
}

.lrn_prog .mod_grid .mod_card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1300;
  margin: 0;
  position: relative;
  display: inline-block
}

.lrn_prog .mod_grid .mod_card h5::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #C65151, #FF8C1A);
  transition: width .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.lrn_prog .mod_grid .mod_card:hover h5::after {
  width: 100%
}

.lrn_prog .mod_grid .mod_card .card_desc {
  font-size: 14px;
  line-height: 1.7;
  color: #4a3520
}

.lrn_prog .mod_grid .mod_card .tag_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto
}

.lrn_prog .mod_grid .mod_card .tag_row .tag {
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #c6515112;
  color: #C65151;
  font-weight: 600
}

.lrn_prog .divider_double_b {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px
}

.lrn_prog .divider_double_b span {
  display: block;
  height: 1px;
  background: #a0d4a0;
  opacity: .3
}

.lrn_prog .instructors_sec {
  padding: 56px 28px;
  background: radial-gradient(ellipse at 30% 60%, #f0fff8 0%, #e6f9f0 60%, #fff 100%);
  position: relative
}

.lrn_prog .instructors_sec .sec_head {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.lrn_prog .instructors_sec .sec_head h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #0a2a18;
  margin: 0;
  position: relative;
  display: inline-block
}

.lrn_prog .instructors_sec .sec_head h3 .grad_word {
  background: linear-gradient(225deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lrn_prog .instructors_sec .sec_head h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #00F171, #FF8C1A);
  animation: underline_draw .55s cubic-bezier(0.16, 1, 0.3, 1) .4s forwards
}

.lrn_prog .instructors_sec .inst_layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 28px;
  align-items: start
}

.lrn_prog .instructors_sec .inst_list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lrn_prog .instructors_sec .inst_card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 1px 3px 5px 0 #00f17112;
  transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
  border-top: 1px solid #00f17126;
  border-right: 2px solid #00f17133
}

.lrn_prog .instructors_sec .inst_card:nth-child(2) {
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .2s both
}

.lrn_prog .instructors_sec .inst_card:nth-child(3) {
  animation: card_appear .5s cubic-bezier(0.16, 1, 0.3, 1) .35s both
}

.lrn_prog .instructors_sec .inst_card:hover {
  box-shadow: 1px 9px 40px 0 #00f1711a;
  transform: translateY(-3px)
}

.lrn_prog .instructors_sec .inst_card .port_wrap {
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  box-shadow: 1px 4px 14px 0 #00f17114
}

.lrn_prog .instructors_sec .inst_card .port_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: sepia(0.08) saturate(1.05) brightness(0.99)
}

.lrn_prog .instructors_sec .inst_card .inst_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center
}

.lrn_prog .instructors_sec .inst_card .inst_info h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #0a2a18;
  margin: 0
}

.lrn_prog .instructors_sec .inst_card .inst_info .role_tag {
  font-size: 14px;
  color: #C65151;
  font-weight: 600;
  background: #c6515112;
  padding: 4px 8px;
  border-radius: 6px;
  width: fit-content
}

.lrn_prog .instructors_sec .inst_card .inst_info .bio {
  font-size: 14px;
  line-height: 1.7;
  color: #2a4a38
}

.lrn_prog .instructors_sec .rating_panel {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lrn_prog .instructors_sec .rating_panel .rating_box {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 1px 4px 14px 0 #00f17114;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 3px solid #00F171;
  text-align: right
}

.lrn_prog .instructors_sec .rating_panel .rating_box .big_num {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(225deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lrn_prog .instructors_sec .rating_panel .rating_box .stars_row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: flex-end
}

.lrn_prog .instructors_sec .rating_panel .rating_box .stars_row .star_svg {
  width: 20px;
  height: 20px
}

.lrn_prog .instructors_sec .rating_panel .rating_box .rev_count {
  font-size: 14px;
  color: #4a7060;
  line-height: 1.4
}

.lrn_prog .instructors_sec .rating_panel .details_box {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 1px 3px 5px 0 #00f17112;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid #FF8C1A;
  border-top: 1px solid #ff8c1a26
}

.lrn_prog .instructors_sec .rating_panel .details_box h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #0a2a18;
  margin: 0
}

.lrn_prog .instructors_sec .rating_panel .details_box .feat_items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lrn_prog .instructors_sec .rating_panel .details_box .feat_items li {
  font-size: 14px;
  line-height: 1.7;
  color: #2a3a28;
  padding-left: 16px;
  border-left: 3px solid #FF8C1A
}

.lrn_prog .instructors_sec .rating_panel .enroll_sec_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00F171, #00c45a);
  color: #0a2a18;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: filter .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 1px 4px 14px 0 #00f17114
}

.lrn_prog .instructors_sec .rating_panel .enroll_sec_btn:hover {
  filter: brightness(1.1);
  transform: translateY(-4px);
  box-shadow: 1px 9px 40px 0 #00f1711a
}

.lrn_prog .instructors_sec .rating_panel .enroll_sec_btn:active {
  background: #fff;
  color: #00c45a;
  border: 2px solid #00c45a
}

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

  .lrn_prog .prog_title .txt_side h1 {
    font-size: 36px
  }

  .lrn_prog .mod_grid .modules_list {
    grid-template-columns: repeat(2, 1fr)
  }

  .lrn_prog .instructors_sec .inst_layout {
    grid-template-columns: 1fr
  }

  .lrn_prog .instructors_sec .rating_panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .lrn_prog .instructors_sec .rating_panel .enroll_sec_btn {
    grid-column: 1 / -1
  }
}

@media (max-width: 640px) {
  .lrn_prog .prog_title {
    grid-template-columns: 1fr
  }

  .lrn_prog .prog_title .img_side {
    height: 280px
  }

  .lrn_prog .prog_title .txt_side {
    padding: 28px 16px
  }

  .lrn_prog .prog_title .txt_side h1 {
    font-size: 36px
  }

  .lrn_prog .mod_grid {
    padding: 28px 16px
  }

  .lrn_prog .mod_grid .modules_list {
    grid-template-columns: 1fr
  }

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

  .lrn_prog .instructors_sec {
    padding: 28px 16px
  }

  .lrn_prog .instructors_sec .inst_layout {
    grid-template-columns: 1fr
  }

  .lrn_prog .instructors_sec .inst_card {
    grid-template-columns: 80px 1fr
  }

  .lrn_prog .instructors_sec .inst_card .port_wrap {
    width: 80px
  }

  .lrn_prog .instructors_sec .rating_panel {
    display: flex;
    flex-direction: column
  }
}

@media (max-width: 360px) {
  .lrn_prog .prog_title .txt_side h1 {
    font-size: 26px
  }

  .lrn_prog .mod_grid .grid_head h2 {
    font-size: 26px
  }

  .lrn_prog .instructors_sec .sec_head h3 {
    font-size: 26px
  }

  .lrn_prog .instructors_sec .inst_card {
    grid-template-columns: 1fr
  }
}

.bse {
  background: #fff;
  overflow-x: clip;
  max-width: 100%
}

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

.bse ::selection {
  background: linear-gradient(120deg, #C65151, #FF8C1A, #00F171);
  color: #111
}

.bse .typ_lead {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: #444
}

.bse .grad_word {
  background: linear-gradient(200deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.bse .draw_line {
  display: inline-block;
  position: relative
}

.bse .draw_line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF8C1A, #C65151, #00F171);
  animation: lineIn .55s cubic-bezier(0.16, 1, 0.3, 1) .4s forwards
}

@keyframes lineIn {
  to {
    width: 100%
  }
}

.bse .char_appear {
  display: inline-block;
  overflow: hidden
}

.bse .char_appear span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: charUp .45s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.bse .char_appear span:nth-child(1) {
  animation-delay: .05s
}

.bse .char_appear span:nth-child(2) {
  animation-delay: .1s
}

.bse .char_appear span:nth-child(3) {
  animation-delay: .15s
}

.bse .char_appear span:nth-child(4) {
  animation-delay: .2s
}

.bse .char_appear span:nth-child(5) {
  animation-delay: .25s
}

.bse .char_appear span:nth-child(6) {
  animation-delay: .3s
}

.bse .char_appear span:nth-child(7) {
  animation-delay: .35s
}

.bse .char_appear span:nth-child(8) {
  animation-delay: .4s
}

.bse .char_appear span:nth-child(9) {
  animation-delay: .45s
}

.bse .char_appear span:nth-child(10) {
  animation-delay: .5s
}

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

.bse .title_blk {
  position: relative;
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 560px;
  background: #111
}

.bse .title_blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #FF8C1A, #C65151, #00F171)
}

.bse .title_left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 28px;
  gap: 16px;
  position: relative;
  z-index: 1
}

.bse .title_left_sub {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff8c;
  letter-spacing: .08em;
  text-transform: uppercase
}

.bse .title_left_brand {
  font-size: 20px;
  line-height: 1.4;
  color: #fff
}

.bse .title_right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden
}

.bse .title_img_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%
}

.bse .title_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .title_img_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #111 0%, transparent 100%);
  pointer-events: none
}

.bse .title_text_area {
  position: relative;
  z-index: 1;
  padding: 56px 56px 28px 28px
}

.bse .title_h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px
}

.bse .title_desc {
  font-size: 20px;
  line-height: 1.4;
  color: #ffffffb8;
  max-width: 540px
}

.bse .title_cta_row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 56px
}

.bse .btn_prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(200deg, #FF8C1A, #C65151);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 16px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: brightness .38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 1px 4px 14px 0 #c6515114
}

.bse .btn_prim:hover {
  filter: brightness(1.12);
  box-shadow: 1px 9px 40px 0 #c651511a
}

.bse .btn_prim:focus-visible {
  outline: 2px solid #00F171;
  outline-offset: 3px
}

.bse .btn_sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffffbf;
  font-size: 14px;
  line-height: 1.4;
  padding: 16px 28px;
  border: 1px solid #ffffff38;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .42s ease-in-out, color .42s ease-in-out
}

.bse .btn_sec:hover {
  border-color: #FF8C1A;
  color: #fff
}

.bse .btn_sec:focus-visible {
  outline: 2px solid #FF8C1A;
  outline-offset: 3px
}

.bse .div_curve {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px
}

.bse .hesit_sec {
  background: #fff;
  padding: 56px 0 0
}

.bse .hesit_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 56px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 28px;
  align-items: start
}

.bse .hesit_label_col {
  padding-top: 8px
}

.bse .hesit_num {
  font-size: 66px;
  line-height: 1.1;
  color: #F0EDED;
  font-weight: 700;
  display: block;
  user-select: none
}

.bse .hesit_tag {
  font-size: 14px;
  line-height: 1.4;
  color: #C65151;
  text-transform: uppercase;
  letter-spacing: .09em
}

.bse .hesit_body {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.bse .hesit_h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #1a1200;
  margin: 0
}

.bse .hesit_cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.bse .hesit_item {
  border-left: 3px solid #FF8C1A;
  padding: 16px;
  background: #FFF9F5;
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 1px 3px 5px 0 #c6515112;
  transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .hesit_item:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-4px)
}

.bse .hesit_item h4 {
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  margin: 0
}

.bse .hesit_item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0
}

.bse .div_curve2 {
  display: block;
  width: 100%;
  line-height: 0
}

.bse .invest_sec {
  position: relative;
  padding: 56px 0;
  animation: bgPulse 6s ease-in-out infinite
}

.bse .invest_sec_bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #fff5ee 0%, #f0e0d0 100%);
  z-index: 0
}

@keyframes bgPulse {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.04)
  }
}

.bse .invest_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.bse .invest_top {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 28px;
  align-items: end
}

.bse .invest_h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #111;
  margin: 0
}

.bse .invest_aside_text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-align: right
}

.bse .invest_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.bse .step_card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 1px 4px 14px 0 #c6515114;
  position: relative;
  transition: box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1), transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .step_card:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-6px)
}

.bse .step_num {
  font-size: 36px;
  line-height: 1.1;
  color: #F0EDED;
  font-weight: 700;
  position: absolute;
  top: 16px;
  right: 16px;
  user-select: none
}

.bse .step_card h5 {
  font-size: 14px;
  line-height: 1.4;
  color: #C65151;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .07em
}

.bse .step_card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0
}

.bse .diamond_accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #FF8C1A, #C65151);
  transform: rotate(45deg);
  border-radius: 0;
  pointer-events: none
}

.bse .invest_img_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.bse .img_fig {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.bse .img_fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .img_fig:hover img {
  transform: scale(1.06)
}

.bse .div_curve3 {
  display: block;
  width: 100%;
  line-height: 0
}

.bse .longval_sec {
  background: #111;
  padding: 56px 0;
  position: relative
}

.bse .longval_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 28px
}

.bse .longval_port_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bse .port_wrap {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 7/9;
  width: 100%;
  box-shadow: 1px 9px 40px 0 #00f1711a
}

.bse .port_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .port_wrap:hover img {
  transform: scale(1.04)
}

.bse .port_credit {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff80
}

.bse .port_name {
  color: #fff;
  display: block
}

.bse .port_role {
  color: #ffffff73;
  display: block;
  font-size: 14px
}

.bse .longval_body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px
}

.bse .longval_h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
  margin: 0
}

.bse .longval_lead {
  font-size: 20px;
  line-height: 1.4;
  color: #ffffffa6;
  margin: 0
}

.bse .longval_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bse .longval_list li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid #00F171;
  padding: 16px;
  background: #ffffff0a;
  border-radius: 0 6px 6px 0;
  transition: background .45s ease-in-out
}

.bse .longval_list li:hover {
  background: #ffffff14
}

.bse .li_idx {
  font-size: 26px;
  line-height: 1.1;
  color: #00F171;
  font-weight: 700;
  flex-shrink: 0;
  width: 28px;
  text-align: right
}

.bse .li_txt {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.bse .li_txt strong {
  font-size: 14px;
  line-height: 1.4;
  color: #fff
}

.bse .li_txt span {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff8c
}

.bse .proof_sec {
  background: #fff;
  padding: 56px 0
}

.bse .proof_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.bse .proof_top_row {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 28px;
  align-items: end
}

.bse .proof_h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #111;
  margin: 0
}

.bse .proof_right_note {
  font-size: 14px;
  line-height: 1.7;
  color: #888;
  text-align: right
}

.bse .proof_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.bse .proof_card {
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFF9F5;
  box-shadow: 1px 3px 5px 0 #c6515112;
  transition: box-shadow .48s cubic-bezier(0.16, 1, 0.3, 1), transform .48s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.bse .proof_card:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-4px)
}

.bse .proof_card_accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF8C1A, #C65151, #00F171)
}

.bse .proof_card h5 {
  font-size: 20px;
  line-height: 1.4;
  color: #111;
  margin: 0
}

.bse .proof_card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0
}

.bse .proof_card_meta {
  font-size: 14px;
  line-height: 1.4;
  color: #C65151;
  margin-top: auto
}

.bse .proof_img_strip {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.bse .proof_img_strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .proof_img_strip:hover img {
  transform: scale(1.06)
}

.bse .proof_bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  align-items: stretch
}

.bse .proof_quote_blk {
  background: #111;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 1px 4px 14px 0 #00f17114
}

.bse .proof_quote_blk blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffffe0;
  font-style: italic;
  border-left: 3px solid #00F171;
  padding-left: 16px
}

.bse .proof_quote_attr {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff73
}

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

  .bse .title_left {
    display: none
  }

  .bse .title_h1 {
    font-size: 36px
  }

  .bse .hesit_inner {
    grid-template-columns: 1fr
  }

  .bse .hesit_num {
    display: none
  }

  .bse .invest_steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .bse .invest_top {
    grid-template-columns: 1fr
  }

  .bse .invest_aside_text {
    text-align: left
  }

  .bse .longval_inner {
    grid-template-columns: 1fr
  }

  .bse .port_wrap {
    max-width: 280px
  }

  .bse .proof_grid {
    grid-template-columns: 1fr 1fr
  }

  .bse .proof_top_row {
    grid-template-columns: 1fr
  }

  .bse .proof_right_note {
    text-align: left
  }

  .bse .proof_bottom {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .bse .title_h1 {
    font-size: 26px
  }

  .bse .hesit_cols {
    grid-template-columns: 1fr
  }

  .bse .invest_steps {
    grid-template-columns: 1fr
  }

  .bse .invest_img_row {
    grid-template-columns: 1fr
  }

  .bse .proof_grid {
    grid-template-columns: 1fr
  }

  .bse .title_text_area {
    padding: 28px 16px 16px
  }

  .bse .title_cta_row {
    padding: 16px 16px 28px;
    flex-direction: column;
    align-items: flex-start
  }

  .bse .longval_h2,
  .bse .hesit_h2,
  .bse .invest_h2,
  .bse .proof_h2 {
    font-size: 26px
  }
}

@media (max-width: 360px) {
  .bse .title_h1 {
    font-size: 20px
  }

  .bse .btn_prim,
  .bse .btn_sec {
    font-size: 14px;
    padding: 16px
  }
}

.cont-pg {
  background: #fff;
  overflow-x: hidden
}

.cont-pg .pg-intro {
  padding: 56px 28px 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start
}

.cont-pg .pg-intro .intro-left {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.cont-pg .pg-intro .lbl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(118deg, #FF8C1A, #C65151, #00F171);
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  width: fit-content
}

.cont-pg .pg-intro .intro-hdg {
  font-size: 66px;
  line-height: 1.1;
  color: #1a1200;
  margin: 0
}

.cont-pg .pg-intro .intro-hdg .grad-word {
  background: linear-gradient(118deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cont-pg .pg-intro .intro-sub {
  font-size: 20px;
  line-height: 1.7;
  color: #3a2c00;
  margin: 0;
  max-width: 520px
}

.cont-pg .pg-intro .contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0
}

.cont-pg .pg-intro .contact-points li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fffaf5;
  border-radius: 10px;
  border: 1px solid #c651511f;
  border-left: 4px solid #C65151;
  box-shadow: 1px 3px 5px 0 #c6515112;
  transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.cont-pg .pg-intro .contact-points li:hover {
  box-shadow: 1px 9px 40px 0 #c651511a;
  transform: translateY(-3px)
}

.cont-pg .pg-intro .contact-points .cp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(118deg, #FF8C1A, #C65151);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cont-pg .pg-intro .contact-points .cp-icon svg {
  width: 20px;
  height: 20px
}

.cont-pg .pg-intro .contact-points .cp-body {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.cont-pg .pg-intro .contact-points .cp-lbl {
  font-size: 14px;
  color: #8a6a00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.cont-pg .pg-intro .contact-points .cp-val {
  font-size: 20px;
  color: #1a1200;
  font-weight: 500;
  text-decoration: none;
  transition: color .38s ease-in-out
}

.cont-pg .pg-intro .contact-points .cp-val:hover {
  color: #C65151
}

.cont-pg .pg-intro .contact-points .cp-val.addr {
  font-size: 14px;
  line-height: 1.7
}

.cont-pg .pg-intro .intro-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.cont-pg .pg-intro .decor-shape {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(118deg, #FF8C1A22, #C6515122, #00F17122);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.cont-pg .pg-intro .decor-shape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 28px, #c6515112 28px, #c6515112 29px), repeating-linear-gradient(90deg, transparent, transparent 28px, #c6515112 28px, #c6515112 29px);
  border-radius: 10px
}

.cont-pg .pg-intro .decor-shape .shape-mid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.cont-pg .pg-intro .decor-shape .float-icon {
  animation: icon-float 3.2s ease-in-out infinite
}

.cont-pg .pg-intro .decor-shape .float-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 8px 16px #c6515140)
}

@keyframes icon-float {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-12px)
  }
}

.cont-pg .pg-intro .decor-shape .shape-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a1200;
  text-align: center
}

.cont-pg .pg-intro .decor-shape .shape-sub {
  font-size: 14px;
  color: #8a6a00;
  text-align: center
}

.cont-pg .pg-intro .corner-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(118deg, #FF8C1A, #C65151);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 6px;
  box-shadow: 1px 4px 14px 0 #c6515114;
  z-index: 2
}

.cont-pg .pg-intro .decor-border-wrap {
  position: relative;
  width: 100%;
  padding: 8px
}

.cont-pg .pg-intro .decor-border-wrap::before,
.cont-pg .pg-intro .decor-border-wrap::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  top: 0;
  left: 0;
  pointer-events: none
}

.cont-pg .pg-intro .decor-border-wrap::before {
  border-top: 2px solid #C65151;
  border-left: 2px solid #C65151;
  border-radius: 10px 0 0 0
}

.cont-pg .pg-intro .decor-border-wrap::after {
  border-bottom: 2px solid #00F171;
  border-right: 2px solid #00F171;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  border-radius: 0 0 10px 0
}

.cont-pg .divider-dots {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden
}

.cont-pg .divider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 32px;
  background: #C65151;
  flex-shrink: 0;
  opacity: .35
}

.cont-pg .divider-dots span:nth-child(3n) {
  background: #00F171
}

.cont-pg .divider-dots span:nth-child(3n+1) {
  background: #FF8C1A
}

.cont-pg .form-sec {
  padding: 56px 28px;
  background: linear-gradient(118deg, #fff8f0, #fff, #f0fff8);
  position: relative
}

.cont-pg .form-sec .sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start
}

.cont-pg .form-sec .form-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 28px
}

.cont-pg .form-sec .aside-hdg {
  font-size: 36px;
  line-height: 1.1;
  color: #1a1200;
  margin: 0;
  position: relative;
  padding-bottom: 16px
}

.cont-pg .form-sec .aside-hdg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF8C1A, #C65151, #00F171);
  border-radius: 32px;
  animation: line-draw .9s cubic-bezier(0.16, 1, 0.3, 1) .3s forwards
}

@keyframes line-draw {
  to {
    width: 100%
  }
}

.cont-pg .form-sec .aside-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5a4400;
  margin: 0
}

.cont-pg .form-sec .matrix-wrap {
  border-radius: 10px;
  border: 1px solid #c6515126;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 #c6515114
}

.cont-pg .form-sec .matrix-row {
  display: grid;
  grid-template-columns: 1fr 40px 40px;
  gap: 0;
  border-bottom: 1px dotted #c6515133
}

.cont-pg .form-sec .matrix-row:last-child {
  border-bottom: none
}

.cont-pg .form-sec .matrix-row.matrix-head {
  background: linear-gradient(118deg, #FF8C1A, #C65151)
}

.cont-pg .form-sec .matrix-cell {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1200;
  background: #fffaf5;
  display: flex;
  align-items: center;
  border-right: 1px dotted #c6515126
}

.cont-pg .form-sec .matrix-cell:last-child {
  border-right: none
}

.cont-pg .form-sec .matrix-row.matrix-head .matrix-cell {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: transparent;
  border-right: 1px solid #fff3
}

.cont-pg .form-sec .matrix-row:nth-child(even) .matrix-cell {
  background: #fff
}

.cont-pg .form-sec .matrix-cell.center {
  justify-content: center;
  padding: 8px
}

.cont-pg .form-sec .check-yes,
.cont-pg .form-sec .check-no {
  width: 18px;
  height: 18px;
  border-radius: 32px;
  display: inline-block;
  flex-shrink: 0
}

.cont-pg .form-sec .check-yes {
  background: #00F171;
  position: relative
}

.cont-pg .form-sec .check-yes::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.cont-pg .form-sec .check-no {
  background: #c6515126;
  position: relative
}

.cont-pg .form-sec .check-no::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%23C65151' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.cont-pg .form-sec .form-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 1px 9px 40px 0 #c651511a;
  border: 1px solid #c651511a;
  position: relative
}

.cont-pg .form-sec .form-card .card-tag {
  position: absolute;
  top: -12px;
  right: 28px;
  background: linear-gradient(118deg, #00F171, #C65151);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 6px
}

.cont-pg .form-sec .form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cont-pg .form-sec .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.cont-pg .form-sec .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cont-pg .form-sec .field-grp label {
  font-size: 14px;
  font-weight: 600;
  color: #3a2c00;
  letter-spacing: .02em
}

.cont-pg .form-sec .field-grp label .req {
  color: #C65151;
  margin-left: 4px
}

.cont-pg .form-sec .field-grp input,
.cont-pg .form-sec .field-grp select,
.cont-pg .form-sec .field-grp textarea {
  padding: 16px;
  border: 1.5px solid #c6515138;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1200;
  background: #fffaf5;
  outline: none;
  transition: border-color .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none
}

.cont-pg .form-sec .field-grp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23C65151' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer
}

.cont-pg .form-sec .field-grp input::placeholder,
.cont-pg .form-sec .field-grp textarea::placeholder {
  color: #c4a060;
  transition: opacity .5s ease-in-out
}

.cont-pg .form-sec .field-grp input:focus::placeholder,
.cont-pg .form-sec .field-grp textarea:focus::placeholder {
  opacity: 0
}

.cont-pg .form-sec .field-grp input:focus,
.cont-pg .form-sec .field-grp select:focus,
.cont-pg .form-sec .field-grp textarea:focus {
  border-color: #C65151;
  box-shadow: 0 0 0 3px #c6515121 inset 0 1px 3px #c6515114
}

.cont-pg .form-sec .field-grp textarea {
  resize: vertical;
  min-height: 96px
}

.cont-pg .form-sec .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fffaf5;
  border-radius: 6px;
  border: 1px solid #c651511f
}

.cont-pg .form-sec .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #C65151;
  cursor: pointer
}

.cont-pg .form-sec .privacy-row .priv-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5a4400
}

.cont-pg .form-sec .privacy-row .priv-text a {
  color: #C65151;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .38s ease-in-out
}

.cont-pg .form-sec .privacy-row .priv-text a:hover {
  color: #FF8C1A
}

.cont-pg .form-sec .submit-btn {
  padding: 16px 56px;
  background: linear-gradient(118deg, #FF8C1A, #C65151);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 1px 4px 14px 0 #c6515114;
  transition: filter .38s cubic-bezier(0.16, 1, 0.3, 1), transform .38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .38s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
  border-radius: 10px
}

.cont-pg .form-sec .submit-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-3px);
  box-shadow: 1px 9px 40px 0 #c651511a
}

.cont-pg .form-sec .submit-btn:focus {
  outline: 3px solid #FF8C1A;
  outline-offset: 3px
}

.cont-pg .form-sec .submit-btn:active {
  transform: translateY(0);
  filter: brightness(0.97)
}

@media (max-width: 1024px) {
  .cont-pg .pg-intro {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .cont-pg .pg-intro .intro-right {
    display: none
  }

  .cont-pg .form-sec .sec-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .cont-pg .form-sec .form-aside {
    position: static
  }
}

@media (max-width: 640px) {
  .cont-pg .pg-intro {
    padding: 28px 16px 16px
  }

  .cont-pg .pg-intro .intro-hdg {
    font-size: 36px
  }

  .cont-pg .form-sec {
    padding: 28px 16px
  }

  .cont-pg .form-sec .field-row {
    grid-template-columns: 1fr
  }

  .cont-pg .form-sec .form-card {
    padding: 16px
  }

  .cont-pg .form-sec .submit-btn {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 360px) {
  .cont-pg .pg-intro .intro-hdg {
    font-size: 26px
  }

  .cont-pg .pg-intro .intro-sub {
    font-size: 14px
  }
}

.success_page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 16px;
  background: #fff
}

.success_page .result_wrap {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 9px 40px 0 #c651511a;
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.success_page .icon_wrap {
  width: 72px;
  height: 72px;
  border-radius: 32px;
  background: linear-gradient(157deg, #FF8C1A, #C65151, #00F171);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 4px 14px 0 #c6515114;
  flex-shrink: 0
}

.success_page .icon_wrap svg {
  display: block
}

.success_page .result_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center
}

.success_page .result_heading {
  font-size: 36px;
  line-height: 1.1;
  color: #1b1412;
  margin: 0
}

.success_page .result_heading span {
  background: linear-gradient(157deg, #FF8C1A, #C65151, #00F171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.success_page .result_text {
  font-size: 20px;
  line-height: 1.4;
  color: #3a2e2b;
  margin: 0;
  max-width: 420px
}

.success_page .result_note {
  font-size: 14px;
  line-height: 1.7;
  color: #6e5a54;
  margin: 0;
  border-left: 3px solid #C65151;
  padding: 8px 16px;
  border-radius: 0;
  background: #fff5f5;
  text-align: left;
  width: 100%
}

.success_page .action_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center
}

.success_page .btn_primary {
  display: inline-block;
  padding: 16px 28px;
  background: linear-gradient(157deg, #FF8C1A, #C65151, #00F171);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 1px 4px 14px 0 #c6515114;
  transition: brightness .38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s ease-in-out;
  border: none;
  cursor: pointer
}

.success_page .btn_primary:hover {
  filter: brightness(1.08);
  box-shadow: 1px 9px 40px 0 #c651511a
}

.success_page .btn_primary:focus {
  outline: 2px solid #C65151;
  outline-offset: 3px
}

.success_page .btn_secondary {
  display: inline-block;
  padding: 16px 28px;
  background: #fff;
  color: #C65151;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #C65151;
  transition: background .42s ease-in-out, color .42s ease-in-out;
  cursor: pointer
}

.success_page .btn_secondary:hover {
  background: #fff5f5
}

.success_page .btn_secondary:focus {
  outline: 2px solid #FF8C1A;
  outline-offset: 3px
}

@media (max-width: 640px) {
  .success_page .result_wrap {
    padding: 28px 16px;
    gap: 16px
  }

  .success_page .result_heading {
    font-size: 26px
  }

  .success_page .result_text {
    font-size: 14px
  }

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

  .success_page .btn_primary,
  .success_page .btn_secondary {
    text-align: center
  }
}