html,
body {
  margin: 0;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #1d1d1d;
  background: #FFFBF4
}

.brand-lock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #fffbf4eb;
  border: 1px solid #2713921f;
  border-radius: 6px;
  box-shadow: 2px 2px 3px -2px #2713920f
}

.brand-lock__glyph {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0
}

.brand-lock__label {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #271392;
  text-decoration: none
}

.top-bar {
  background: linear-gradient(135deg, #FFFBF4 0%, #65b94014 100%);
  border-bottom: 1px solid #27139226;
  position: relative
}

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

.nav-deck {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.nav-row__link {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 4px;
  background: transparent;
  transition: background .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), border .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  position: relative
}

.nav-row__link:hover {
  background: #65b9401a;
  border: 1px solid #65b9404d
}

.nav-row__link:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

.action-link {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #FFFBF4;
  text-decoration: none;
  padding: 8px 48px;
  background: #271392;
  border-radius: 6px;
  border: 1px solid #271392;
  transition: background .55s ease-in-out, width .55s ease-in-out, padding .55s ease-in-out;
  display: inline-block;
  white-space: nowrap
}

.action-link:hover {
  background: #65B940;
  border: 1px solid #65B940;
  padding-left: 56px;
  padding-right: 56px
}

.action-link:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

@keyframes focus-fade-in {
  from {
    outline-color: transparent
  }

  to {
    outline-color: #65B940
  }
}

@media (max-width: 900px) {
  .top-bar__plate {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px
  }

  .nav-deck {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%
  }

  .nav-row__link {
    width: 100%;
    text-align: left
  }

  .action-link {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 600px) {
  .brand-lock {
    padding: 8px
  }

  .brand-lock__glyph {
    width: 64px;
    height: 64px
  }

  .brand-lock__label {
    font-size: 17px
  }

  .top-bar__plate {
    padding: 8px
  }
}

.ground {
  background: #271392;
  position: relative;
  overflow: hidden
}

.ground::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #65b94026 100%), radial-gradient(circle at 20% 80%, #fffbf414 0%, transparent 50%);
  pointer-events: none
}

.ground::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: #65b9401f;
  border-radius: 50%;
  pointer-events: none
}

.ground__plate {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
  z-index: 1
}

.ground__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 96px
}

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

.ground__head {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #FFFBF4;
  margin: 0 0 8px
}

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

.ground__list-link {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #fffbf4d9;
  text-decoration: none;
  transition: color .48s ease-in-out, padding-left .48s ease-in-out;
  display: block
}

.ground__list-link:hover {
  color: #65B940;
  padding-left: 8px
}

.ground__list-link:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

.ground__logo-pod {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #fffbf41a;
  border: 1px solid #fffbf433;
  border-radius: 6px;
  box-shadow: 2px 4px 25px -2px #65b94014
}

.ground__logo-glyph {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0
}

.ground__logo-text {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #FFFBF4
}

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

.reach-pod__label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fffbf4b3;
  margin: 0
}

.reach-pod__value {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #FFFBF4;
  margin: 0
}

.reach-pod__value a {
  color: #65B940;
  text-decoration: none;
  transition: color .48s ease-in-out
}

.reach-pod__value a:hover {
  color: #FFFBF4
}

.reach-pod__value a:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

.ground__base {
  padding-top: 48px;
  border-top: 1px solid #fffbf433;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.ground__copy {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #fffbf4b3;
  margin: 0
}

.ground__service-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.ground__service-link {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fffbf4b3;
  text-decoration: none;
  transition: color .48s ease-in-out
}

.ground__service-link:hover {
  color: #65B940
}

.ground__service-link:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

@media (max-width: 1200px) {
  .ground__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
  }
}

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

  .ground__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px
  }

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

  .ground__service-row {
    flex-direction: column;
    gap: 8px
  }
}

@media (max-width: 600px) {
  .ground__plate {
    padding: 24px 8px
  }

  .ground__logo-pod {
    padding: 8px
  }

  .ground__logo-glyph {
    width: 64px;
    height: 64px
  }

  .ground__logo-text {
    font-size: 17px
  }
}

.consent-card {
  position: fixed;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 640px;
  background: #FFFBF4;
  border: 1px solid #27139233;
  border-radius: 10px;
  box-shadow: 2px 10px 44px -2px #2713921a;
  padding: 48px;
  z-index: 1500;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .58s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-card[hidden] {
  display: none
}

.consent-card.show-card {
  opacity: 1;
  transform: translateY(0)
}

.consent-card__symbol {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  background: #65B940;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.consent-card__symbol::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #FFFBF4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.consent-card__symbol::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #65B940;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.consent-card__text {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #271392;
  text-align: center;
  margin: 0 0 24px
}

.consent-card__actions {
  display: flex;
  gap: 24px;
  justify-content: center
}

.consent-card__btn {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  padding: 8px 48px;
  border-radius: 6px;
  border: 1px solid;
  cursor: pointer;
  transition: background .55s ease-in-out, color .55s ease-in-out, border .55s ease-in-out, padding .55s ease-in-out;
  white-space: nowrap
}

.consent-card__btn--primary {
  background: #271392;
  color: #FFFBF4;
  border-color: #271392
}

.consent-card__btn--primary:hover {
  background: #65B940;
  border-color: #65B940;
  padding-left: 56px;
  padding-right: 56px
}

.consent-card__btn--primary:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

.consent-card__btn--secondary {
  background: transparent;
  color: #271392;
  border-color: #271392
}

.consent-card__btn--secondary:hover {
  background: #2713921a;
  border-color: #65B940
}

.consent-card__btn--secondary:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

@media (max-width: 600px) {
  .consent-card {
    width: 95%;
    padding: 24px;
    bottom: 24px
  }

  .consent-card__actions {
    flex-direction: column;
    gap: 8px
  }

  .consent-card__btn {
    width: 100%
  }
}

.settings-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #271392;
  border-radius: 50%;
  border: 1px solid #271392;
  cursor: pointer;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 25px -2px #27139214;
  transition: background .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .52s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.settings-trigger:hover {
  background: #65B940;
  transform: rotate(90deg)
}

.settings-trigger:focus {
  outline: 2px solid #65B940;
  outline-offset: 2px;
  animation: focus-fade-in .48s ease-in-out
}

.settings-trigger__icon {
  width: 24px;
  height: 24px;
  position: relative
}

.settings-trigger__icon::before,
.settings-trigger__icon::after {
  content: '';
  position: absolute;
  background: #FFFBF4
}

.settings-trigger__icon::before {
  width: 24px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.settings-trigger__icon::after {
  width: 3px;
  height: 24px;
  left: 50%;
  top: 0;
  transform: translateX(-50%)
}

body[data-consent="given"] .settings-trigger {
  display: flex
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
  opacity: .55
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: .4
}

img {
  opacity: 0;
  transition: opacity .58s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

img.loaded {
  opacity: 1
}

.policy-details {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #fff
}

.policy-details h1 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 48px
}

.policy-details h2 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #271392;
  margin: 96px 0 24px
}

.policy-details h3 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #271392;
  margin: 48px 0 24px
}

.policy-details h4,
.policy-details h5,
.policy-details h6 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #271392;
  margin: 48px 0 24px
}

.policy-details p {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0 0 24px
}

.policy-details ul,
.policy-details ol {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0 0 24px;
  padding: 0 0 0 24px
}

.policy-details li {
  margin: 0 0 8px
}

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

.policy-details ul ul,
.policy-details ol ol,
.policy-details ul ol,
.policy-details ol ul {
  margin: 8px 0 0
}

.policy-details strong,
.policy-details b {
  font-weight: 700;
  color: #271392
}

.policy-details em,
.policy-details i {
  font-style: italic
}

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

.policy-details thead {
  background: #FFFBF4
}

.policy-details th {
  padding: 24px;
  text-align: left;
  font-weight: 700;
  color: #271392;
  border: 1px solid #2713921a
}

.policy-details td {
  padding: 24px;
  color: #1a1a2e;
  border: 1px solid #2713921a
}

.policy-details tbody tr:nth-child(even) {
  background: #fffbf466
}

.policy-details hr {
  border: none;
  height: 1px;
  background: #2713921a;
  margin: 96px 0
}

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

  .policy-details h1 {
    font-size: 21px;
    margin: 0 0 24px
  }

  .policy-details h2 {
    margin: 48px 0 24px
  }

  .policy-details h3,
  .policy-details h4,
  .policy-details h5,
  .policy-details h6 {
    margin: 24px 0
  }

  .policy-details hr {
    margin: 48px 0
  }

  .policy-details table {
    font-size: 14px;
    margin: 0 0 24px
  }

  .policy-details th,
  .policy-details td {
    padding: 8px
  }
}

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

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

.gd-dtl {
  background: #fff;
  color: #1a1a1a;
  max-width: 1600px;
  margin: 0 auto
}

.gd-dtl__print-bar {
  background: linear-gradient(127deg, #65B940 0%, #65b94000 100%);
  padding: 24px 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px
}

.gd-dtl__print-btn {
  background: #fff;
  color: #271392;
  border: none;
  padding: 8px 24px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 2px 4px 25px -2px #27139214;
  transition: width .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: .01em;
  line-height: 1.2
}

.gd-dtl__print-btn:hover {
  width: 165px;
  box-shadow: 2px 10px 44px -2px #2713921a
}

.gd-dtl__print-btn:focus {
  outline: 2px solid #65B940;
  outline-offset: 4px
}

.gd-dtl__print-icon {
  width: 18px;
  height: 18px;
  display: block
}

.gd-dtl__print-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor
}

.gd-dtl__img-crop {
  position: relative;
  padding: 96px 48px 48px;
  background: #FFFBF4;
  overflow: hidden
}

.gd-dtl__img-crop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(167deg, #27139208 0%, #27139200 100%);
  pointer-events: none;
  z-index: 1
}

.gd-dtl__img-crop-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2
}

.gd-dtl__img-zone {
  position: relative
}

.gd-dtl__img-shape {
  width: 100%;
  height: 520px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 10px 44px -2px #2713921a
}

.gd-dtl__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  opacity: 0;
  animation: gd-dtl-fade-in .58s ease-in-out .2s forwards
}

@keyframes gd-dtl-fade-in {
  to {
    opacity: 1
  }
}

.gd-dtl__txt-zone {
  padding: 96px 0 0
}

.gd-dtl__giant-title {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 800;
  color: #271392;
  letter-spacing: .01em;
  margin: 0;
  word-wrap: break-word
}

.gd-dtl__author-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 8px 24px;
  background: #fff;
  border: 1px solid #65B940;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #271392;
  letter-spacing: .02em
}

.gd-dtl__author-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #65B940;
  border-radius: 1px;
  display: block
}

.gd-dtl__prose {
  background: #fff;
  padding: 96px 48px
}

.gd-dtl__prose-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 96px;
  align-items: start
}

.gd-dtl__content-main {
  color: #2a2a2a
}

.gd-dtl__content-main p {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .01em;
  margin: 0 0 24px
}

.gd-dtl__content-main p:last-child {
  margin-bottom: 0
}

.gd-dtl__content-main h2 {
  font-size: 21px;
  line-height: 1.6;
  font-weight: 700;
  color: #271392;
  letter-spacing: .01em;
  margin: 48px 0 24px;
  position: relative;
  padding-left: 24px
}

.gd-dtl__content-main h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #65B940;
  border-radius: 1px
}

.gd-dtl__content-main h2:first-child {
  margin-top: 0
}

.gd-dtl__content-main h4 {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: #271392;
  letter-spacing: .02em;
  margin: 24px 0 8px
}

.gd-dtl__content-main cite {
  display: block;
  font-style: italic;
  font-size: 17px;
  line-height: 1.9;
  color: #4a4a4a;
  letter-spacing: .01em;
  padding: 24px;
  background: #FFFBF4;
  border-radius: 4px;
  margin: 24px 0;
  box-shadow: 2px 2px 3px -2px #2713920f
}

.gd-dtl__content-main small {
  font-size: 14px;
  line-height: 1.6;
  color: #6a6a6a;
  letter-spacing: .02em;
  display: block;
  margin: 8px 0
}

.gd-dtl__content-main ol {
  margin: 24px 0;
  padding-left: 24px
}

.gd-dtl__content-main li {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .01em;
  margin: 8px 0;
  color: #2a2a2a
}

.gd-dtl__content-main li::marker {
  color: #65B940;
  font-weight: 700
}

.gd-dtl__content-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  box-shadow: 2px 4px 25px -2px #27139214;
  border-radius: 6px;
  overflow: hidden
}

.gd-dtl__content-main tr {
  border-bottom: 1px solid #f0f0f0
}

.gd-dtl__content-main tr:last-child {
  border-bottom: none
}

.gd-dtl__content-main td {
  padding: 24px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a2a2a
}

.gd-dtl__content-main td:first-child {
  font-weight: 600;
  color: #271392
}

.gd-dtl__content-main figure {
  margin: 48px 0;
  background: #FFFBF4;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 3px -2px #2713920f
}

.gd-dtl__content-main figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: #6a6a6a;
  letter-spacing: .02em;
  margin-top: 8px;
  text-align: center;
  font-style: italic
}

.gd-dtl__content-side {
  position: sticky;
  top: 24px
}

.gd-dtl__side-note {
  background: linear-gradient(142deg, #FFFBF4 0%, #fffbf400 100%);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #65b94033;
  box-shadow: 2px 4px 25px -2px #27139214
}

.gd-dtl__side-label {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #65B940;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 8px
}

.gd-dtl__side-text {
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
  letter-spacing: .01em;
  margin: 0
}

.gd-dtl__cta-band {
  background: #271392;
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.gd-dtl__cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #65b94014 0%, #65b94000 70%);
  pointer-events: none;
  z-index: 1
}

.gd-dtl__cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center
}

.gd-dtl__cta-title {
  font-size: 21px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  margin: 0 0 24px
}

.gd-dtl__cta-desc {
  font-size: 17px;
  line-height: 1.9;
  color: #ffffffd9;
  letter-spacing: .01em;
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.gd-dtl__cta-btn {
  background: #65B940;
  color: #fff;
  border: none;
  padding: 8px 48px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 2px 10px 44px -2px #65b9401a;
  transition: width .58s ease-in-out, box-shadow .58s ease-in-out;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block
}

.gd-dtl__cta-btn:hover {
  width: 280px;
  box-shadow: 2px 10px 44px -2px #65b9402e
}

.gd-dtl__cta-btn:focus {
  outline: 2px solid #FFFBF4;
  outline-offset: 4px
}

.gd-dtl ::selection {
  background: #65B940;
  color: #fff
}

@media (max-width: 1200px) {
  .gd-dtl__img-crop-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .gd-dtl__txt-zone {
    padding: 0
  }

  .gd-dtl__giant-title {
    font-size: 55px
  }

  .gd-dtl__prose-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .gd-dtl__content-side {
    position: static
  }
}

@media (max-width: 900px) {
  .gd-dtl__print-bar {
    padding: 24px
  }

  .gd-dtl__img-crop {
    padding: 48px 24px 24px
  }

  .gd-dtl__img-shape {
    height: 380px
  }

  .gd-dtl__giant-title {
    font-size: 42px
  }

  .gd-dtl__prose {
    padding: 48px 24px
  }

  .gd-dtl__prose-inner {
    gap: 24px
  }

  .gd-dtl__cta-band {
    padding: 48px 24px
  }
}

@media (max-width: 600px) {
  .gd-dtl__print-btn {
    font-size: 14px;
    padding: 8px 24px
  }

  .gd-dtl__print-btn:hover {
    width: 145px
  }

  .gd-dtl__img-crop {
    padding: 24px
  }

  .gd-dtl__img-crop::before {
    height: 180px
  }

  .gd-dtl__img-shape {
    height: 280px
  }

  .gd-dtl__txt-zone {
    padding: 24px 0 0
  }

  .gd-dtl__giant-title {
    font-size: 32px
  }

  .gd-dtl__author-tag {
    font-size: 14px;
    padding: 8px;
    margin: 8px 0 0
  }

  .gd-dtl__prose {
    padding: 24px
  }

  .gd-dtl__content-main h2 {
    font-size: 17px;
    margin: 24px 0 8px
  }

  .gd-dtl__content-main p {
    font-size: 14px;
    margin: 0 0 8px
  }

  .gd-dtl__content-main cite {
    font-size: 14px;
    padding: 8px;
    margin: 8px 0
  }

  .gd-dtl__content-main li {
    font-size: 14px
  }

  .gd-dtl__content-main td {
    padding: 8px;
    font-size: 14px
  }

  .gd-dtl__content-main figure {
    margin: 24px 0;
    padding: 8px
  }

  .gd-dtl__side-note {
    padding: 8px
  }

  .gd-dtl__cta-band {
    padding: 24px
  }

  .gd-dtl__cta-title {
    font-size: 17px;
    margin: 0 0 8px
  }

  .gd-dtl__cta-desc {
    font-size: 14px;
    margin: 0 0 24px
  }

  .gd-dtl__cta-btn {
    font-size: 14px;
    padding: 8px 24px
  }

  .gd-dtl__cta-btn:hover {
    width: 200px
  }
}

.testimonial {
  background: #FFFBF4;
  color: #1d1d1d;
  overflow-x: clip
}

.testimonial__intro {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  min-height: 280px
}

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

.testimonial__intro-txt {
  position: relative;
  z-index: 2
}

.testimonial__intro-h {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  margin: 0 0 24px;
  color: #271392
}

.testimonial__intro-sub {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 24px;
  color: #2d2d2d
}

.testimonial__intro-link {
  display: inline-block;
  padding: 8px 24px;
  background: #65B940;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: .01em;
  border-radius: 6px;
  transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 2px 2px 3px -2px #65b9400f 2px 4px 25px -2px #65b94014
}

.testimonial__intro-link:hover {
  width: calc(100% + 24px);
  box-shadow: 2px 2px 3px -2px #65b9400f 2px 4px 25px -2px #65b94014 2px 10px 44px -2px #65b9401a
}

.testimonial__intro-img-wrap {
  position: relative;
  z-index: 2;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 2px 3px -2px #2713920f 2px 4px 25px -2px #27139214
}

.testimonial__intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) hue-rotate(280deg) saturate(0.8);
  opacity: 0;
  transition: opacity .6s ease-in-out
}

.testimonial__intro-img.loaded {
  opacity: 1
}

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

  .testimonial__intro-h {
    font-size: 45px
  }

  .testimonial__intro-img-wrap {
    height: 180px
  }
}

@media (max-width: 600px) {
  .testimonial__intro-h {
    font-size: 35px
  }

  .testimonial__intro-sub {
    font-size: 17px
  }
}

.testimonial__rating {
  background: linear-gradient(127deg, #65B940 0%, #65b94014 100%);
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

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

.testimonial__rating-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

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

.testimonial__rating-card {
  background: #fff;
  padding: 48px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 3px -2px #2713920f 2px 4px 25px -2px #27139214;
  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);
  position: relative;
  border: 2px solid transparent
}

.testimonial__rating-card:hover {
  transform: translateY(-8px);
  box-shadow: 2px 2px 3px -2px #2713920f 2px 4px 25px -2px #27139214 2px 10px 44px -2px #2713921a;
  border-color: #271392
}

.testimonial__rating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #65B940;
  transition: border-width .5s ease-in-out
}

.testimonial__rating-card:hover::before {
  border-width: 0 0 48px 48px
}

.testimonial__rating-num {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0 0 8px
}

.testimonial__rating-label {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2d2d2d;
  margin: 0
}

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

  .testimonial__rating {
    padding: 48px 24px
  }
}

.testimonial__stories {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px 48px
}

.testimonial__stories-h {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  margin: 0 0 48px;
  color: #271392;
  text-align: center
}

.testimonial__stories-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 24px
}

.testimonial__story {
  background: #fff;
  padding: 48px 24px;
  border-radius: 10px;
  box-shadow: 2px 2px 3px -2px #65b9400f 2px 4px 25px -2px #65b94014;
  position: relative;
  transition: border .6s ease-in-out;
  border: 1px solid transparent
}

.testimonial__story:hover {
  border-color: #65B940
}

.testimonial__story::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent #271392 transparent transparent;
  opacity: .3;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.testimonial__story:hover::after {
  transform: translate(4px, 4px);
  opacity: 1
}

.testimonial__story-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px
}

.testimonial__story-photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 8px #2713921a;
  opacity: 0;
  transition: opacity .6s ease-in-out
}

.testimonial__story-photo.loaded {
  opacity: .85
}

.testimonial__story-meta {
  flex-grow: 1
}

.testimonial__story-name {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .01em;
  font-weight: 600;
  margin: 0 0 8px;
  color: #271392
}

.testimonial__story-role {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  color: #5d5d5d
}

.testimonial__story-txt {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #2d2d2d;
  margin: 0
}

.testimonial__story-txt::before {
  content: '"';
  font-size: 70px;
  line-height: 0;
  color: #65B940;
  opacity: .3;
  position: relative;
  top: 24px;
  left: -8px
}

@media (max-width: 900px) {
  .testimonial__stories-h {
    font-size: 45px
  }

  .testimonial__stories-list {
    grid-template-columns: 1fr
  }

  .testimonial__stories {
    padding: 48px 24px
  }
}

@media (max-width: 600px) {
  .testimonial__stories-h {
    font-size: 35px
  }

  .testimonial__story-top {
    flex-direction: column;
    gap: 8px
  }

  .testimonial__story-photo {
    width: 100%;
    height: 120px
  }
}

.testimonial__showcase {
  background: #271392;
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.testimonial__showcase::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFFBF4;
  border-radius: 0 0 50% 50% / 0 0 100% 100%
}

.testimonial__showcase-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

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

.testimonial__showcase-content {
  color: #fff
}

.testimonial__showcase-h {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  margin: 0 0 24px;
  color: #65B940;
  position: relative;
  padding-left: 48px
}

.testimonial__showcase-h::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 32px;
  height: 32px;
  background: #65B940;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.testimonial__showcase-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px
}

.testimonial__showcase-main {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  margin: 0
}

.testimonial__showcase-side {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  opacity: .8
}

.testimonial__showcase-link {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 24px;
  background: #fff;
  color: #271392;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: .01em;
  border-radius: 6px;
  transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 2px 2px 3px -2px #ffffff0f 2px 4px 25px -2px #ffffff14
}

.testimonial__showcase-link:hover {
  width: calc(100% + 24px);
  box-shadow: 2px 2px 3px -2px #ffffff0f 2px 4px 25px -2px #ffffff14 2px 10px 44px -2px #ffffff1a
}

.testimonial__showcase-visual {
  position: relative;
  height: 400px
}

.testimonial__showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 2px 3px -2px #65b9400f 2px 4px 25px -2px #65b94014 2px 10px 44px -2px #65b9401a;
  opacity: 0;
  transition: opacity .6s ease-in-out
}

.testimonial__showcase-img.loaded {
  opacity: .75
}

@media (max-width: 900px) {
  .testimonial__showcase-layout {
    grid-template-columns: 1fr
  }

  .testimonial__showcase-h {
    font-size: 45px;
    padding-left: 0
  }

  .testimonial__showcase-h::before {
    display: none
  }

  .testimonial__showcase-cols {
    grid-template-columns: 1fr
  }

  .testimonial__showcase-visual {
    height: 280px
  }

  .testimonial__showcase {
    padding: 48px 24px
  }
}

@media (max-width: 600px) {
  .testimonial__showcase-h {
    font-size: 35px
  }
}

.testimonial ::selection {
  background: #65B940;
  color: #fff
}

.testimonial ::placeholder {
  font-style: italic;
  opacity: .55
}

.lrn-prgrm {
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.lrn-prgrm__hero {
  position: relative;
  padding: 96px 24px 48px;
  background: linear-gradient(217deg, #FFFBF4 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 48px
}

.lrn-prgrm__hero-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1
}

.lrn-prgrm__hero-circle {
  position: absolute;
  border: 1px solid #65b94014;
  border-radius: 999px;
  pointer-events: none
}

.lrn-prgrm__hero-circle--one {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 5%;
  opacity: .4
}

.lrn-prgrm__hero-circle--two {
  width: 420px;
  height: 420px;
  bottom: -100px;
  right: 10%;
  opacity: .3
}

.lrn-prgrm__hero-circle--three {
  width: 160px;
  height: 160px;
  top: 50%;
  right: 20%;
  opacity: .5
}

.lrn-prgrm__hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start
}

.lrn-prgrm__hero-txt {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prgrm__hero-h1 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0
}

.lrn-prgrm__hero-accent {
  color: #65B940;
  position: relative;
  display: inline-block
}

.lrn-prgrm__hero-p {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

.lrn-prgrm__hero-img-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 4px 25px -2px #65b94014;
  max-width: 480px;
  justify-self: end
}

.lrn-prgrm__hero-img-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #271392b3 0%, transparent 100%);
  z-index: 1;
  pointer-events: none
}

.lrn-prgrm__hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0;
  animation: lrn-prgrm-fade-in .55s ease-in-out .2s forwards
}

@keyframes lrn-prgrm-fade-in {
  to {
    opacity: 1
  }
}

.lrn-prgrm__structure {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.lrn-prgrm__structure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #65B940 50%, transparent 100%)
}

.lrn-prgrm__structure-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.lrn-prgrm__structure-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center
}

.lrn-prgrm__structure-h2 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0
}

.lrn-prgrm__structure-sub {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
}

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

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

.lrn-prgrm__structure-main {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prgrm__structure-p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

.lrn-prgrm__structure-side {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prgrm__structure-note {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #555;
  margin: 0;
  padding: 24px;
  background: #FFFBF4;
  border-radius: 6px;
  border: 1px solid #65B940
}

.lrn-prgrm__structure-highlight {
  border: 1px solid #65B940;
  padding: 0 8px;
  border-radius: 4px;
  display: inline
}

.lrn-prgrm__phases {
  padding: 96px 24px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden
}

.lrn-prgrm__phases-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #65b9400a;
  border-radius: 10px;
  transform: rotate(25deg);
  top: -200px;
  right: -150px;
  pointer-events: none
}

.lrn-prgrm__phases-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.lrn-prgrm__phases-h2 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0;
  text-align: center
}

.lrn-prgrm__phases-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.lrn-prgrm__phase-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 2px 2px 3px -2px #2713920f;
  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);
  position: relative
}

.lrn-prgrm__phase-card:hover {
  transform: translateY(-8px);
  box-shadow: 2px 10px 44px -2px #2713921a
}

.lrn-prgrm__phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: #65B940;
  border-radius: 0 4px 4px 0;
  transition: height .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn-prgrm__phase-card:hover::before {
  height: 100%
}

.lrn-prgrm__phase-num {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(217deg, #65B940 0%, #FFFBF4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #fff
}

.lrn-prgrm__phase-h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0
}

.lrn-prgrm__phase-p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

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

.lrn-prgrm__phase-li {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  padding-left: 24px;
  position: relative
}

.lrn-prgrm__phase-li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #65B940;
  border-radius: 999px
}

.lrn-prgrm__outcomes {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.lrn-prgrm__outcomes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%2365B940' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1
}

.lrn-prgrm__outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center
}

.lrn-prgrm__outcomes-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prgrm__outcomes-h2 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0
}

.lrn-prgrm__outcomes-sub {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

.lrn-prgrm__outcomes-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 4px 25px -2px #27139214
}

.lrn-prgrm__outcomes-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0;
  animation: lrn-prgrm-fade-in .55s ease-in-out .3s forwards;
  transform: translateZ(0);
  will-change: transform
}

.lrn-prgrm__outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn-prgrm__outcomes-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #FFFBF4;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color .5s ease-in-out
}

.lrn-prgrm__outcomes-block:hover {
  border-color: #65B940
}

.lrn-prgrm__outcomes-h4 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px
}

.lrn-prgrm__outcomes-h4::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #65B940;
  border-radius: 1px;
  flex-shrink: 0
}

.lrn-prgrm__outcomes-p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

.lrn-prgrm__delivery {
  padding: 96px 24px;
  background: linear-gradient(217deg, #271392 0%, #1a0d66 100%);
  position: relative
}

.lrn-prgrm__delivery-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 20px, 90% 35px, 80% 28px, 70% 40px, 60% 25px, 50% 38px, 40% 22px, 30% 35px, 20% 28px, 10% 40px, 0 30px)
}

.lrn-prgrm__delivery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.lrn-prgrm__delivery-h2 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center
}

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

.lrn-prgrm__delivery-item {
  background: #ffffff14;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #ffffff1f;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn-prgrm__delivery-item:hover {
  background: #ffffff1f;
  border-color: #65B940
}

.lrn-prgrm__delivery-icon-wrap {
  width: 64px;
  height: 64px;
  background: #65B940;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.lrn-prgrm__delivery-icon {
  width: 32px;
  height: 32px;
  fill: #fff
}

.lrn-prgrm__delivery-h4 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #fff;
  margin: 0
}

.lrn-prgrm__delivery-p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #ffffffd9;
  margin: 0
}

.lrn-prgrm__delivery-btn {
  background: #65B940;
  color: #fff;
  border: none !important;
  padding: 24px 48px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: width .5s ease-in-out, box-shadow .5s ease-in-out;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 2px 4px 25px -2px #65b94014
}

.lrn-prgrm__delivery-btn:hover {
  width: calc(100% - 48px);
  box-shadow: 2px 10px 44px -2px #65b9401a
}

.lrn-prgrm__delivery-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 4px
}

.lrn-prgrm__metrics {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.lrn-prgrm__metrics::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #271392 50%, transparent 100%)
}

.lrn-prgrm__metrics-center {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #65B940;
  border-radius: 999px;
  border: 3px solid #fff
}

.lrn-prgrm__metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.lrn-prgrm__metrics-h2 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0;
  text-align: center
}

.lrn-prgrm__metrics-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.lrn-prgrm__metrics-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #f5f5f5;
  border-radius: 6px;
  position: relative;
  overflow: hidden
}

.lrn-prgrm__metrics-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #65B940;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn-prgrm__metrics-box:hover::before {
  transform: scaleX(1)
}

.lrn-prgrm__metrics-val {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #65B940;
  margin: 0
}

.lrn-prgrm__metrics-lbl {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
  margin: 0
}

.lrn-prgrm__icon-cycle {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 24px
}

.lrn-prgrm__icon-item {
  width: 48px;
  height: 48px;
  background: #FFFBF4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: border-color .55s ease-in-out, background .55s ease-in-out;
  animation: lrn-prgrm-icon-pulse 4s ease-in-out infinite
}

.lrn-prgrm__icon-item:nth-child(1) {
  animation-delay: 0s
}

.lrn-prgrm__icon-item:nth-child(2) {
  animation-delay: .8s
}

.lrn-prgrm__icon-item:nth-child(3) {
  animation-delay: 1.6s
}

.lrn-prgrm__icon-item:nth-child(4) {
  animation-delay: 2.4s
}

.lrn-prgrm__icon-item:nth-child(5) {
  animation-delay: 3.2s
}

@keyframes lrn-prgrm-icon-pulse {

  0%,
  100% {
    border-color: transparent;
    background: #FFFBF4
  }

  20%,
  80% {
    border-color: #65B940;
    background: #65b9401a
  }
}

.lrn-prgrm__icon-svg {
  width: 24px;
  height: 24px;
  fill: #271392
}

::selection {
  background: #65B940;
  color: #fff
}

::placeholder {
  font-style: italic;
  opacity: .55
}

@media (max-width: 1200px) {
  .lrn-prgrm__metrics-board {
    grid-template-columns: repeat(2, 1fr)
  }

  .lrn-prgrm__delivery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {

  .lrn-prgrm__hero-h1,
  .lrn-prgrm__structure-h2,
  .lrn-prgrm__phases-h2,
  .lrn-prgrm__outcomes-h2,
  .lrn-prgrm__delivery-h2,
  .lrn-prgrm__metrics-h2 {
    font-size: 70px
  }

  .lrn-prgrm__hero-wrap {
    grid-template-columns: 1fr
  }

  .lrn-prgrm__hero-img-card {
    justify-self: center
  }

  .lrn-prgrm__structure-cols {
    grid-template-columns: 1fr
  }

  .lrn-prgrm__outcomes-inner {
    grid-template-columns: 1fr
  }

  .lrn-prgrm__delivery-grid {
    grid-template-columns: 1fr
  }

  .lrn-prgrm__metrics-board {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .lrn-prgrm__hero {
    padding: 48px 24px 24px
  }

  .lrn-prgrm__hero-h1,
  .lrn-prgrm__structure-h2,
  .lrn-prgrm__phases-h2,
  .lrn-prgrm__outcomes-h2,
  .lrn-prgrm__delivery-h2,
  .lrn-prgrm__metrics-h2 {
    font-size: 70px
  }

  .lrn-prgrm__hero-p,
  .lrn-prgrm__structure-sub,
  .lrn-prgrm__outcomes-sub,
  .lrn-prgrm__delivery-h4,
  .lrn-prgrm__outcomes-h4,
  .lrn-prgrm__phase-h3 {
    font-size: 21px
  }

  .lrn-prgrm__structure-p,
  .lrn-prgrm__structure-note,
  .lrn-prgrm__phase-p,
  .lrn-prgrm__phase-li,
  .lrn-prgrm__outcomes-p,
  .lrn-prgrm__delivery-p,
  .lrn-prgrm__metrics-lbl {
    font-size: 17px
  }

  .lrn-prgrm__structure,
  .lrn-prgrm__phases,
  .lrn-prgrm__outcomes,
  .lrn-prgrm__delivery,
  .lrn-prgrm__metrics {
    padding: 48px 24px
  }

  .lrn-prgrm__icon-cycle {
    flex-wrap: wrap
  }

  .lrn-prgrm__delivery-btn:hover {
    width: 100%
  }
}

.abt {
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a
}

.abt__opening {
  position: relative;
  padding: 96px 24px 192px;
  background: linear-gradient(127deg, #65B940 0%, #65b94000 100%);
  overflow: hidden
}

.abt__opening::before {
  content: '"';
  position: absolute;
  top: 48px;
  left: 24px;
  font-size: 280px;
  line-height: 1;
  color: #ffffff1f;
  font-weight: 700;
  pointer-events: none;
  z-index: 1
}

.abt__opening-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto
}

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

.abt__opening-quote {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #fff;
  text-align: center;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto
}

.abt__pulse {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #2713924d 0%, #27139200 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: abt-pulse 4.8s ease-in-out infinite
}

@keyframes abt-pulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translateX(-50%) scale(1.4);
    opacity: .3
  }
}

.abt__divider {
  position: relative;
  height: 1px;
  background: #27139226;
  margin: 0 24px
}

.abt__divider-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #271392;
  text-transform: uppercase;
  font-weight: 600
}

.abt__story {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(180deg, #fffbf499 0%, #fff 50%)
}

.abt__story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 28px, #65b94008 28px, #65b94008 30px);
  pointer-events: none;
  z-index: 1
}

.abt__story-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto
}

.abt__story-main {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.abt__story-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0;
  text-align: center
}

.abt__story-text {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #2a2a2a;
  margin: 0;
  text-align: left
}

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

.abt__story-note {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #555;
  margin: 0;
  padding: 24px;
  background: #fffbf4cc;
  border-radius: 6px;
  border: 1px solid #65b94033
}

.abt__team {
  display: grid;
  grid-template-columns: 40fr 60fr;
  min-height: 600px;
  background: #271392;
  overflow: hidden
}

.abt__team-visual {
  position: relative;
  overflow: hidden
}

.abt__team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0
}

.abt__team-img.loaded {
  opacity: 1
}

.abt__team-shape {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 3px solid #65b94066;
  border-radius: 50%;
  pointer-events: none
}

.abt__team-content {
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px
}

.abt__team-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: left
}

.abt__team-text {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #fff;
  margin: 0
}

.abt__profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.abt__profile {
  position: relative;
  background: #ffffff0d;
  border-radius: 10px;
  padding: 24px;
  transition: background .5s ease-in-out;
  border: 1px solid #ffffff1a
}

.abt__profile:hover {
  background: #ffffff1f;
  border-color: #65b94066
}

.abt__profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #65B940;
  border-radius: 10px 0 0 0;
  transition: height .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt__profile:hover::before {
  height: 100%
}

.abt__profile-pic {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 24px;
  transition: opacity .5s ease-in-out;
  opacity: 0
}

.abt__profile-pic.loaded {
  opacity: 1
}

.abt__profile-name {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px
}

.abt__profile-role {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #ffffffb3;
  margin: 0
}

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

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

.abt__callout-quote {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #271392;
  font-weight: 600;
  margin: 0 0 24px;
  padding-left: 96px;
  position: relative;
  font-style: italic
}

.abt__callout-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #65B940 0%, #271392 100%);
  border-radius: 4px;
  transform: rotate(12deg)
}

.abt__callout-quote::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 1px;
  transform: rotate(-12deg)
}

.abt__callout-author {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #555;
  margin: 0;
  padding-left: 96px
}

.abt__values {
  padding: 96px 24px;
  background: #fffbf4ff;
  position: relative
}

.abt__values::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 400px;
  height: 400px;
  border: 2px solid #65b94026;
  border-radius: 50% 50% 0 50%;
  pointer-events: none;
  transform: rotate(45deg)
}

.abt__values-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.abt__values-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0 0 48px;
  text-align: center
}

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

.abt__value {
  text-align: left
}

.abt__value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  position: relative
}

.abt__value-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #65B940;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt__value:hover .abt__value-icon::before {
  transform: rotate(90deg)
}

.abt__value-label {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  font-weight: 700;
  color: #271392;
  margin: 0 0 24px;
  text-align: left
}

.abt__value-text {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #2a2a2a;
  margin: 0
}

.abt__highlight {
  display: inline;
  border: 1px solid #65B940;
  padding: 2px 6px;
  border-radius: 4px
}

.abt__contact {
  padding: 96px 24px;
  background: linear-gradient(180deg, #fff 0%, #fffbf466 100%)
}

.abt__contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.abt__contact-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  font-weight: 700;
  color: #271392;
  margin: 0;
  text-align: center
}

.abt__contact-subheading {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #555;
  margin: 0;
  text-align: left
}

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

.abt__contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #27139214;
  transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
  border: 1px solid #65b9401a
}

.abt__contact-block:hover {
  box-shadow: 2px 10px 44px -2px #2713921a;
  transform: translateY(-4px);
  border-color: #65b9404d
}

.abt__contact-label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #271392;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px
}

.abt__contact-value {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #2a2a2a;
  margin: 0
}

.abt__contact-link {
  color: #65B940;
  text-decoration: none;
  transition: color .5s ease-in-out;
  display: inline-block;
  position: relative
}

.abt__contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #65B940;
  transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt__contact-link:hover::after {
  width: 100%
}

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

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

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

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

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

  .abt__opening::before {
    font-size: 180px
  }

  .abt__opening-heading {
    font-size: 48px
  }

  .abt__opening-quote {
    font-size: 17px
  }

  .abt__story {
    padding: 48px 24px
  }

  .abt__story-heading {
    font-size: 48px
  }

  .abt__team-content {
    padding: 48px 24px
  }

  .abt__team-heading {
    font-size: 48px
  }

  .abt__values {
    padding: 48px 24px
  }

  .abt__values-heading {
    font-size: 48px
  }

  .abt__contact {
    padding: 48px 24px
  }

  .abt__contact-heading {
    font-size: 48px
  }

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

  .abt__callout {
    padding: 48px 24px
  }
}

@media (max-width: 600px) {
  .abt__opening-heading {
    font-size: 36px
  }

  .abt__story-heading {
    font-size: 36px
  }

  .abt__team-heading {
    font-size: 36px
  }

  .abt__values-heading {
    font-size: 36px
  }

  .abt__contact-heading {
    font-size: 36px
  }

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

  .abt__callout-quote {
    padding-left: 0;
    padding-top: 80px
  }

  .abt__callout-quote::before {
    left: 50%;
    transform: translateX(-50%) rotate(12deg)
  }

  .abt__callout-quote::after {
    left: calc(50% + 16px);
    transform: translateX(-50%) rotate(-12deg)
  }

  .abt__callout-author {
    padding-left: 0
  }
}

.cntct {
  background: #FFFBF4;
  color: #1d1d1d;
  overflow-x: clip
}

.cntct__hero {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(157deg, #271392 0%, #271392 52%, #65B940 52%, #65B940 100%);
  overflow: hidden
}

.cntct__hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #fffbf414;
  pointer-events: none
}

.cntct__hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 18%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #fffbf40d;
  pointer-events: none
}

.cntct__hero-wrap {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1
}

.cntct__hero-txt {
  padding-right: 48px
}

.cntct__eyebrow {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #fffbf4bf;
  margin-bottom: 24px;
  text-transform: uppercase
}

.cntct__hero-h {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #FFFBF4;
  margin: 0;
  font-weight: 700
}

.cntct__hero-img-wrap {
  position: relative;
  width: 100%;
  height: 520px
}

.cntct__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  opacity: 0;
  animation: cntct-fade-in .55s ease-in-out .2s forwards
}

@keyframes cntct-fade-in {
  to {
    opacity: 1
  }
}

.cntct__form-zone {
  padding: 96px 24px;
  background: linear-gradient(173deg, #65b94008 0%, #fffbf4ff 100%);
  position: relative
}

.cntct__form-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 24px solid #65B940
}

.cntct__form-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 96px;
  align-items: start
}

.cntct__form-box {
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #27139214 2px 10px 44px -2px #2713921a;
  border: 1px solid #2713920f
}

.cntct__form-h {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 8px;
  font-weight: 600;
  position: relative;
  padding-left: 32px
}

.cntct__form-h::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #65B940;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.cntct__form-sub {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #5a5a5a;
  margin: 0 0 48px
}

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

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

.cntct__label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a2a2a;
  font-weight: 500
}

.cntct__input {
  padding: 14px 24px;
  border: 2px solid #27139226;
  border-radius: 6px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #1d1d1d;
  background: #fff;
  transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
  outline: none
}

.cntct__input::placeholder {
  font-style: italic;
  opacity: .55;
  color: #6a6a6a
}

.cntct__input:focus {
  border-color: #65B940;
  box-shadow: 0 0 0 3px #65b9401f
}

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

.cntct__interest-label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a2a2a;
  font-weight: 500;
  margin-bottom: 8px
}

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

.cntct__checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.cntct__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #27139233;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color .48s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0
}

.cntct__checkbox:checked {
  background: #65B940;
  border-color: #65B940
}

.cntct__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.cntct__checkbox-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #3a3a3a;
  cursor: pointer;
  user-select: none
}

.cntct__privacy-wrap {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-top: 8px
}

.cntct__privacy-check {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #27139233;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color .48s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  margin-top: 2px
}

.cntct__privacy-check:checked {
  background: #271392;
  border-color: #271392
}

.cntct__privacy-check:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.cntct__privacy-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #4a4a4a
}

.cntct__privacy-text a {
  color: #271392;
  text-decoration: underline;
  transition: color .52s ease-in-out
}

.cntct__privacy-text a:hover {
  color: #65B940
}

.cntct__submit {
  padding: 14px 48px;
  background: #271392;
  color: #FFFBF4;
  border: 2px solid #271392;
  border-radius: 6px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .58s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .58s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .58s cubic-bezier(0.25, 0.46, 0.45, 0.94), width .58s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: start;
  width: auto
}

.cntct__submit:hover {
  background: #65B940;
  border-color: #65B940;
  width: calc(100% - 96px)
}

.cntct__submit:focus {
  outline: 3px solid #2713924d;
  outline-offset: 2px
}

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

.cntct__info-card {
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  border: 2px dashed #65b9404d;
  position: relative
}

.cntct__info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #271392 0%, #65B940 100%);
  border-radius: 10px 10px 0 0
}

.cntct__info-h {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 600
}

.cntct__info-item {
  display: flex;
  align-items: start;
  gap: 24px;
  margin-bottom: 24px
}

.cntct__info-item:last-child {
  margin-bottom: 0
}

.cntct__icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #65b9401f 0%, #27139214 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative
}

.cntct__icon-box::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid #65B940;
  border-radius: 4px
}

.cntct__info-content {
  flex: 1
}

.cntct__info-label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #6a6a6a;
  margin: 0 0 4px;
  text-transform: uppercase
}

.cntct__info-value {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #1d1d1d;
  margin: 0;
  font-weight: 500
}

.cntct__info-value a {
  color: inherit;
  text-decoration: none;
  transition: color .5s ease-in-out;
  display: inline-block
}

.cntct__info-value a:hover {
  color: #65B940
}

.cntct__availability {
  background: linear-gradient(162deg, #2713920a 0%, #65b9400f 100%);
  padding: 24px;
  border-radius: 6px;
  border-left: 4px solid #65B940;
  margin-top: 24px;
  animation: cntct-pulse 10s ease-in-out infinite
}

@keyframes cntct-pulse {

  0%,
  100% {
    background-size: 100% 100%
  }

  50% {
    background-size: 105% 105%
  }
}

.cntct__availability-h {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 8px;
  font-weight: 600
}

.cntct__availability-txt {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .01em;
  color: #4a4a4a;
  margin: 0
}

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

  .cntct__hero-txt {
    padding-right: 0;
    text-align: center
  }

  .cntct__hero-img-wrap {
    height: 420px
  }

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

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

  .cntct__hero-h {
    font-size: 21px
  }

  .cntct__hero-img-wrap {
    height: 320px
  }

  .cntct__form-zone {
    padding: 48px 24px
  }

  .cntct__form-box {
    padding: 24px
  }

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

  .cntct__info-card {
    padding: 24px
  }

  .cntct__submit:hover {
    width: 100%
  }
}

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

  .cntct__hero-h {
    font-size: 17px
  }

  .cntct__hero-img-wrap {
    height: 240px
  }

  .cntct__form-zone {
    padding: 24px
  }

  .cntct__form-h {
    font-size: 17px
  }

  .cntct__info-h {
    font-size: 17px
  }

  .cntct__icon-box {
    width: 40px;
    height: 40px
  }
}

.cntct ::selection {
  background: #65B940;
  color: #FFFBF4
}

.frnt {
  max-width: 1600px;
  margin: 0 auto;
  background: #FFFBF4;
  color: #1d1d1d;
  overflow-x: clip
}

.frnt__intro {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(117deg, #65B940 0%, #271392 100%);
  overflow: hidden
}

.frnt__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, #fffbf426 0%, transparent 60%);
  animation: grad-shift 8s ease-in-out infinite alternate;
  pointer-events: none
}

@keyframes grad-shift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(80px, -60px)
  }
}

.frnt__intro-curve {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 2px solid #fffbf41f;
  border-radius: 50%;
  pointer-events: none
}

.frnt__intro-curve:nth-child(1) {
  top: -120px;
  right: 10%
}

.frnt__intro-curve:nth-child(2) {
  bottom: -180px;
  left: 5%;
  width: 380px;
  height: 380px
}

.frnt__intro-curve:nth-child(3) {
  top: 50%;
  right: -100px;
  width: 280px;
  height: 280px;
  border-color: #fffbf414
}

.frnt__intro-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center
}

.frnt__intro-title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #FFFBF4;
  margin: 0 0 24px;
  font-weight: 700
}

.frnt__intro-desc {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #fffbf4eb;
  margin: 0 0 48px
}

.frnt__intro-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap
}

.frnt__intro-btn {
  display: inline-block;
  padding: 0 48px;
  height: 58px;
  line-height: 58px;
  font-size: 17px;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 6px;
  transition: width .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600
}

.frnt__intro-btn--primary {
  background: #FFFBF4;
  color: #271392;
  box-shadow: 2px 4px 25px -2px #27139214
}

.frnt__intro-btn--primary:hover {
  box-shadow: 2px 10px 44px -2px #2713921a;
  padding: 0 56px
}

.frnt__intro-btn--secondary {
  background: transparent;
  color: #FFFBF4;
  border: 2px solid #fffbf466
}

.frnt__intro-btn--secondary:hover {
  border-color: #fffbf4cc;
  padding: 0 56px
}

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

.frnt__story::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #65B940 0%, transparent 100%)
}

.frnt__story-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.frnt__story-visual {
  position: relative
}

.frnt__story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #27139214;
  transition: transform .58s ease-in-out, box-shadow .58s ease-in-out;
  opacity: 0;
  animation: img-fade .65s ease-in-out .2s forwards
}

@keyframes img-fade {
  to {
    opacity: 1
  }
}

.frnt__story-img:hover {
  transform: scale(1.03);
  box-shadow: 2px 10px 44px -2px #2713921a
}

.frnt__story-notch {
  position: absolute;
  top: 24px;
  left: 0;
  width: 6px;
  height: 80px;
  background: #65B940;
  border-radius: 0 4px 4px 0
}

.frnt__story-content {
  padding: 0 24px 0 0
}

.frnt__story-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 700
}

.frnt__story-text {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #3a3a3a;
  margin: 0 0 24px
}

.frnt__story-text:last-child {
  margin-bottom: 0
}

.frnt__team {
  padding: 96px 24px;
  background: #f7f7f7;
  position: relative
}

.frnt__team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #271392 100%)
}

.frnt__team-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.frnt__team-header {
  text-align: center;
  margin-bottom: 48px
}

.frnt__team-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 700
}

.frnt__team-subhead {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #4a4a4a;
  margin: 0
}

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

.frnt__team-card {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 3px -2px #2713920f;
  transition: box-shadow .48s ease-in-out, transform .48s ease-in-out;
  border: 1px solid transparent
}

.frnt__team-card:hover {
  box-shadow: 2px 10px 44px -2px #2713921a;
  transform: translateY(-4px);
  border-color: #65B940
}

.frnt__team-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #65B940 0%, #271392 100%);
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFBF4;
  font-size: 21px;
  font-weight: 700
}

.frnt__team-role {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #271392;
  margin: 0 0 8px;
  font-weight: 600
}

.frnt__team-bio {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #5a5a5a;
  margin: 0
}

.frnt__proof {
  padding: 96px 24px;
  background: #271392;
  color: #FFFBF4;
  position: relative;
  overflow: hidden
}

.frnt__proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 35px, #fffbf405 35px, #fffbf405 37px), repeating-linear-gradient(90deg, transparent, transparent 35px, #fffbf405 35px, #fffbf405 37px);
  pointer-events: none;
  opacity: .6
}

.frnt__proof::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #65B940 0%, transparent 100%)
}

.frnt__proof-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.frnt__proof-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #FFFBF4;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center
}

.frnt__proof-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px
}

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

.frnt__proof-text {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .015em;
  color: #fffbf4e6;
  margin: 0
}

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

.frnt__proof-metric {
  background: #fffbf414;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #65b94033;
  transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frnt__proof-metric:hover {
  background: #fffbf41f;
  border-color: #65b94066
}

.frnt__proof-label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #fffbf4b3;
  margin: 0 0 8px;
  text-transform: uppercase
}

.frnt__proof-value {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #65B940;
  margin: 0;
  font-weight: 700
}

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

.frnt__diff::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #65B940 100%)
}

.frnt__diff-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.frnt__diff-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #271392;
  margin: 0 0 48px;
  font-weight: 700
}

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

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

.frnt__diff-shape {
  width: 32px;
  height: 32px;
  background: #65B940;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-bottom: 8px
}

.frnt__diff-item:nth-child(2n) .frnt__diff-shape {
  background: #271392;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%)
}

.frnt__diff-item:nth-child(3) .frnt__diff-shape {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.frnt__diff-label {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #271392;
  margin: 0;
  font-weight: 600
}

.frnt__diff-desc {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #4a4a4a;
  margin: 0
}

.frnt__cond {
  padding: 96px 24px;
  background: #f7f7f7;
  position: relative
}

.frnt__cond::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #271392 0%, transparent 100%)
}

.frnt__cond-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.frnt__cond-content {
  position: relative;
  padding-left: 8px
}

.frnt__cond-notch {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 120px;
  background: #271392;
  border-radius: 0 4px 4px 0
}

.frnt__cond-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 700
}

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

.frnt__cond-point {
  display: flex;
  gap: 24px;
  align-items: start;
  position: relative
}

.frnt__cond-point::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #65B940;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px
}

.frnt__cond-point::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 20px;
  width: 2px;
  height: calc(100% + 12px);
  background: repeating-linear-gradient(to bottom, #65B940 0px, #65B940 4px, transparent 4px, transparent 8px)
}

.frnt__cond-point:last-child::after {
  display: none
}

.frnt__cond-txt {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #3a3a3a;
  margin: 0
}

.frnt__cond-visual {
  position: relative
}

.frnt__cond-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #65b94014;
  transition: transform .62s ease-in-out, filter .62s ease-in-out;
  opacity: 0;
  animation: img-fade .65s ease-in-out .3s forwards
}

.frnt__cond-img:hover {
  transform: scale(1.02);
  filter: brightness(1.05)
}

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

.frnt__grad-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.frnt__grad-header {
  text-align: center;
  margin-bottom: 48px
}

.frnt__grad-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 700
}

.frnt__grad-intro {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #4a4a4a;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
}

.frnt__grad-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.frnt__grad-block {
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 100%);
  padding: 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 3px -2px #65b9400f;
  transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid transparent
}

.frnt__grad-block:nth-child(1) {
  border-top-color: #65B940
}

.frnt__grad-block:nth-child(2) {
  border-top-color: #271392
}

.frnt__grad-block:nth-child(3) {
  border-top-color: #65B940;
  grid-column: span 2;
  transform: translateY(-24px)
}

.frnt__grad-block:nth-child(4) {
  border-top-color: #271392
}

.frnt__grad-block:hover {
  box-shadow: 2px 10px 44px -2px #65b9401a;
  transform: translateY(-8px)
}

.frnt__grad-block:nth-child(3):hover {
  transform: translateY(-32px)
}

.frnt__grad-num {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #65B940;
  margin: 0;
  font-weight: 700
}

.frnt__grad-block:nth-child(2n) .frnt__grad-num {
  color: #271392
}

.frnt__grad-caption {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #3a3a3a;
  margin: 0;
  font-weight: 600
}

.frnt__grad-detail {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .015em;
  color: #5a5a5a;
  margin: 0
}

.frnt__grad-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto
}

.frnt__grad-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #27139214;
  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);
  opacity: 0;
  animation: img-fade .65s ease-in-out .25s forwards
}

.frnt__grad-img:hover {
  transform: scale(1.015);
  box-shadow: 2px 10px 44px -2px #2713921a
}

@media (max-width: 1200px) {
  .frnt__intro {
    padding: 48px 24px
  }

  .frnt__intro-title {
    font-size: 70px
  }

  .frnt__story-wrap,
  .frnt__proof-layout,
  .frnt__diff-grid,
  .frnt__cond-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

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

  .frnt__grad-blocks {
    grid-template-columns: repeat(2, 1fr)
  }

  .frnt__grad-block:nth-child(3) {
    grid-column: span 1;
    transform: translateY(0)
  }

  .frnt__grad-block:nth-child(3):hover {
    transform: translateY(-8px)
  }
}

@media (max-width: 900px) {

  .frnt__intro-title,
  .frnt__story-heading,
  .frnt__team-heading,
  .frnt__proof-heading,
  .frnt__diff-heading,
  .frnt__cond-heading,
  .frnt__grad-heading {
    font-size: 70px
  }

  .frnt__intro-desc,
  .frnt__team-subhead,
  .frnt__grad-intro {
    font-size: 17px
  }

  .frnt__intro-actions {
    flex-direction: column;
    align-items: stretch
  }

  .frnt__intro-btn {
    text-align: center
  }

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

  .frnt__grad-blocks {
    grid-template-columns: 1fr
  }

  .frnt__story-img,
  .frnt__cond-img,
  .frnt__grad-img {
    height: 360px
  }
}

@media (max-width: 600px) {
  .frnt {
    padding: 0 8px !important
  }

  .frnt__intro,
  .frnt__story,
  .frnt__team,
  .frnt__proof,
  .frnt__diff,
  .frnt__cond,
  .frnt__grad {
    padding: 48px 8px
  }

  .frnt__intro-title,
  .frnt__story-heading,
  .frnt__team-heading,
  .frnt__proof-heading,
  .frnt__diff-heading,
  .frnt__cond-heading,
  .frnt__grad-heading {
    font-size: 70px
  }

  .frnt__intro-curve {
    width: 280px;
    height: 280px
  }

  .frnt__intro-curve:nth-child(2) {
    width: 240px;
    height: 240px
  }

  .frnt__intro-curve:nth-child(3) {
    width: 200px;
    height: 200px
  }

  .frnt__intro-btn {
    padding: 0 24px;
    height: 52px;
    line-height: 52px;
    font-size: 17px
  }

  .frnt__intro-btn:hover {
    padding: 0 32px
  }

  .frnt__story-img,
  .frnt__cond-img,
  .frnt__grad-img {
    height: 280px
  }

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

::selection {
  background: #65B940;
  color: #FFFBF4
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
  opacity: .55
}

.gds {
  background: #FFFBF4;
  color: #1d1d1d;
  overflow-x: hidden
}

.gds__intro {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.gds__intro::before,
.gds__intro::after {
  content: '';
  position: absolute;
  border: 1px solid #65B940;
  border-radius: 50%;
  opacity: .08;
  pointer-events: none
}

.gds__intro::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  animation: gds-pulse-slow 6.2s ease-in-out infinite
}

.gds__intro::after {
  width: 340px;
  height: 340px;
  bottom: -90px;
  right: -60px;
  animation: gds-pulse-slow 7.4s ease-in-out infinite
}

@keyframes gds-pulse-slow {

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

  50% {
    transform: scale(1.08);
    opacity: .12
  }
}

.gds__intro-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  display: block;
  filter: grayscale(100%) contrast(1.4);
  border-radius: 6px;
  opacity: 0;
  animation: gds-fade-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards
}

@keyframes gds-fade-in {
  to {
    opacity: 1
  }
}

.gds__intro-title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #271392
}

.gds__intro-tag {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 48px;
  color: #4d4d4d;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.gds__intro-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap
}

.gds__intro-btn {
  display: inline-block;
  padding: 24px 48px;
  font-size: 17px;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 4px;
  transition: width .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), border .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 2px solid transparent
}

.gds__intro-btn--primary {
  background: #65B940;
  color: #fff
}

.gds__intro-btn--primary:hover {
  width: calc(100% + 24px);
  border: 2px solid #271392
}

.gds__intro-btn--secondary {
  background: transparent;
  color: #271392;
  border: 2px solid #271392
}

.gds__intro-btn--secondary:hover {
  width: calc(100% + 24px);
  background: #271392;
  color: #fff
}

.gds__posts {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  background: linear-gradient(127deg, #fff 0%, #FFFBF4 100%)
}

.gds__posts-head {
  text-align: left;
  margin-bottom: 48px
}

.gds__posts-title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #271392
}

.gds__posts-subtitle {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  color: #4d4d4d;
  max-width: 820px
}

.gds__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 48px
}

.gds__post-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 4px 25px -2px #65b94014;
  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);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  animation: gds-scale-in .62s ease-in-out forwards;
  transform: scale(0.95)
}

.gds__post-card:nth-child(1) {
  animation-delay: .1s
}

.gds__post-card:nth-child(2) {
  animation-delay: .2s
}

.gds__post-card:nth-child(3) {
  animation-delay: .3s
}

.gds__post-card:nth-child(4) {
  animation-delay: .4s
}

.gds__post-card:nth-child(5) {
  animation-delay: .5s
}

.gds__post-card:nth-child(6) {
  animation-delay: .6s
}

@keyframes gds-scale-in {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.gds__post-card:hover {
  transform: scale(1.03);
  box-shadow: 2px 10px 44px -2px #2713921a
}

.gds__post-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5
}

.gds__post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gds__post-card:hover .gds__post-img {
  transform: scale(1.08)
}

.gds__post-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.gds__post-title {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 24px;
  font-weight: 600;
  color: #271392
}

.gds__post-desc {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 24px;
  color: #4d4d4d;
  flex-grow: 1
}

.gds__post-author {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #65B940;
  font-weight: 500
}

.gds__legend {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #fff
}

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

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

.gds__legend-heading {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0;
  font-weight: 700;
  color: #271392;
  text-align: center
}

.gds__legend-subheading {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  color: #4d4d4d;
  text-align: left
}

.gds__legend-text {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  color: #4d4d4d;
  text-align: left
}

.gds__legend-aside {
  background: linear-gradient(217deg, #FFFBF4 0%, #fff 100%);
  padding: 48px 24px;
  border-radius: 6px;
  box-shadow: 2px 2px 3px -2px #65b9400f
}

.gds__legend-aside-title {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 24px;
  font-weight: 600;
  color: #271392;
  text-align: center
}

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

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

.gds__legend-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #65B940;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 1
}

.gds__legend-icon--alt {
  background: #271392
}

.gds__legend-label {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #4d4d4d
}

.gds__divider {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.gds__divider-diamond {
  width: 10px;
  height: 10px;
  background: #65B940;
  transform: rotate(45deg);
  opacity: .4
}

.gds__stats {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #271392;
  position: relative;
  overflow: hidden
}

.gds__stats::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 2px solid #65B940;
  border-radius: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: .06;
  animation: gds-pulse-geo 8.5s ease-in-out infinite;
  pointer-events: none
}

@keyframes gds-pulse-geo {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: .06
  }

  50% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.12);
    opacity: .1
  }
}

.gds__stats-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1
}

.gds__stats-title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #fff
}

.gds__stats-subtitle {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0;
  color: #FFFBF4;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto
}

.gds__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  position: relative;
  z-index: 1
}

.gds__stat-box {
  text-align: center;
  position: relative
}

.gds__stat-shape {
  width: 24px;
  height: 24px;
  margin: 0 auto 24px;
  background: #65B940;
  border-radius: 50%
}

.gds__stat-box:nth-child(2) .gds__stat-shape {
  border-radius: 0;
  transform: rotate(45deg)
}

.gds__stat-box:nth-child(3) .gds__stat-shape {
  border-radius: 1px
}

.gds__stat-num {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 8px;
  font-weight: 700;
  color: #65B940
}

.gds__stat-bar {
  width: 100%;
  height: 4px;
  background: #65b94033;
  border-radius: 10px;
  margin: 0 auto 24px;
  overflow: hidden
}

.gds__stat-fill {
  height: 100%;
  background: #65B940;
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gds__stat-label {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #FFFBF4
}

.gds__cta {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
  background: linear-gradient(314deg, #65B940 0%, #271392 100%);
  text-align: center;
  position: relative
}

.gds__cta-title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #fff
}

.gds__cta-text {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 48px;
  color: #FFFBF4;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto
}

.gds__cta-btn {
  display: inline-block;
  padding: 24px 48px;
  font-size: 17px;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 4px;
  background: #fff;
  color: #271392;
  border: 2px solid #fff;
  transition: width .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  font-weight: 600
}

.gds__cta-btn:hover {
  width: calc(100% + 24px);
  background: transparent;
  color: #fff
}

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

  .gds__intro-title,
  .gds__stats-title,
  .gds__cta-title,
  .gds__legend-heading,
  .gds__posts-title {
    font-size: 55px
  }

  .gds__stat-num {
    font-size: 55px
  }

  .gds__intro-tag,
  .gds__stats-subtitle,
  .gds__cta-text,
  .gds__legend-subheading,
  .gds__posts-subtitle {
    font-size: 19px
  }

  .gds__legend-inner {
    grid-template-columns: 1fr
  }

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

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

@media (max-width: 600px) {

  .gds__intro-title,
  .gds__stats-title,
  .gds__cta-title,
  .gds__legend-heading,
  .gds__posts-title {
    font-size: 42px
  }

  .gds__stat-num {
    font-size: 42px
  }

  .gds__intro-links {
    flex-direction: column;
    align-items: stretch
  }

  .gds__intro-btn {
    width: 100%
  }

  .gds__intro-btn:hover {
    width: 100%
  }
}

.gds ::selection {
  background: #65B940;
  color: #fff
}

.gds input::placeholder,
.gds textarea::placeholder {
  font-style: italic;
  opacity: .55
}

.success-page {
  background: linear-gradient(167deg, #FFFBF4 0%, #65b94014 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px
}

.success-page .confirmation {
  max-width: 680px;
  background: #fff;
  padding: 96px 48px 48px;
  border-radius: 10px;
  box-shadow: 2px 4px 25px -2px #65b94014 2px 10px 44px -2px #65b9401a;
  text-align: center;
  position: relative
}

.success-page .confirmation::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  background: #65B940;
  border-radius: 50%
}

.success-page .confirmation::after {
  content: '';
  position: absolute;
  top: 73px;
  left: 50%;
  transform: translateX(-50%) translateX(-4px) rotate(45deg);
  width: 18px;
  height: 36px;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff
}

.success-page .confirmation__title {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #271392;
  margin: 0 0 24px;
  font-weight: 700
}

.success-page .confirmation__message {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2a2a2a;
  margin: 0 0 48px
}

.success-page .confirmation__details {
  background: #FFFBF4;
  padding: 24px;
  border-radius: 6px;
  margin: 0 0 48px;
  border: 1px solid #65b94026
}

.success-page .confirmation__details p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #4a4a4a;
  margin: 0
}

.success-page .confirmation__details p:first-child {
  margin-bottom: 8px
}

.success-page .confirmation__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .confirmation__btn {
  font-size: 17px;
  letter-spacing: .02em;
  padding: 14px 48px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: width .52s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  font-weight: 600
}

.success-page .confirmation__btn--primary {
  background: #65B940;
  color: #fff
}

.success-page .confirmation__btn--primary:hover {
  box-shadow: 2px 2px 3px -2px #65b9400f 2px 4px 25px -2px #65b94014;
  padding-left: 56px;
  padding-right: 56px
}

.success-page .confirmation__btn--secondary {
  background: transparent;
  color: #271392;
  border: 2px solid #271392
}

.success-page .confirmation__btn--secondary:hover {
  border-color: #65B940;
  color: #65B940;
  padding-left: 56px;
  padding-right: 56px
}

.success-page .confirmation__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #2713921a
}

.success-page .confirmation__footer p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #6a6a6a;
  margin: 0
}

@media (max-width: 600px) {
  .success-page {
    padding: 24px 8px
  }

  .success-page .confirmation {
    padding: 96px 24px 24px
  }

  .success-page .confirmation__title {
    font-size: 21px
  }

  .success-page .confirmation__message {
    font-size: 17px
  }

  .success-page .confirmation__actions {
    flex-direction: column;
    gap: 8px
  }

  .success-page .confirmation__btn {
    width: 100%;
    padding: 14px 24px
  }

  .success-page .confirmation__btn--primary:hover,
  .success-page .confirmation__btn--secondary:hover {
    padding-left: 24px;
    padding-right: 24px
  }
}