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

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  font-family: 'Source Code Pro', monospace
}

.utility-bar {
  background-color: #6A7273;
  padding: 6px 24px
}

.utility-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.utility-contact-group {
  display: flex;
  align-items: center;
  gap: 24px
}

.utility-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #D6CBB0;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.utility-contact-item:hover,
.utility-contact-item:focus {
  color: #fff;
  text-decoration: none
}

.utility-contact-item:focus {
  outline: 2px solid #D6CBB0;
  outline-offset: 2px
}

.utility-locale {
  display: flex;
  align-items: center;
  gap: 6px
}

.utility-locale-label {
  color: #D6CBB0;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5
}

.utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.utility-icon svg {
  width: 14px;
  height: 14px;
  fill: #A3B6B3
}

.brand-row {
  background: linear-gradient(135deg, #fff 0%, #f5f2ec 100%);
  border-bottom: 1px solid #D6CBB0;
  padding: 24px
}

.brand-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-logotype {
  border: 1px solid #D6CBB0;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  padding: 6px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px
}

.brand-logotype img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block
}

.brand-name-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: #3a3f40;
  letter-spacing: -.02em
}

.brand-tagline {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #6A7273;
  margin-top: 2px
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #D6CBB0;
  border-radius: 2px;
  padding: 6px 12px
}

.brand-badge-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #3a3f40;
  font-weight: 700
}

.brand-badge-sub {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #6A7273
}

.primary-nav-bar {
  background-color: #fff;
  border-bottom: 2px solid #A3B6B3;
  box-shadow: 1px 7px 14px 0 #6a72731c
}

.primary-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch
}

.primary-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #3a3f40;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1), background-color .2s ease-in-out;
  white-space: nowrap
}

.primary-nav-link:hover {
  color: #6A7273;
  border-bottom-color: #A3B6B3;
  background-color: #f5f2ec;
  text-decoration: none
}

.primary-nav-link:focus {
  outline: 2px solid #6A7273;
  outline-offset: -2px;
  color: #6A7273;
  text-decoration: none
}

.primary-nav-link.active {
  color: #3a3f40;
  border-bottom-color: #6A7273;
  font-weight: 700
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media (max-width: 1024px) {
  .primary-nav-link {
    padding: 12px;
    font-size: 13px
  }

  .brand-name-text {
    font-size: 19px
  }
}

@media (max-width: 768px) {
  .utility-contact-group {
    gap: 12px
  }

  .utility-bar {
    padding: 6px 12px
  }

  .brand-row {
    padding: 12px
  }

  .brand-row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .primary-nav-inner {
    flex-wrap: wrap;
    padding: 0 12px
  }

  .primary-nav-link {
    padding: 12px 6px;
    font-size: 13px
  }

  .brand-badge {
    display: none
  }
}

@media (max-width: 320px) {
  .utility-contact-item span {
    display: none
  }

  .primary-nav-link {
    padding: 12px 6px
  }
}

.site-footer {
  background: linear-gradient(180deg, #f5f2ec 0%, #ede8dc 100%);
  border-top: 2px solid #D6CBB0;
  padding: 48px 24px 24px
}

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

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-logotype {
  border: 1px solid #D6CBB0;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  padding: 6px;
  border-radius: 6px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px
}

.footer-logotype img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block
}

.footer-brand-name {
  font-family: 'Source Code Pro', monospace;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #3a3f40;
  letter-spacing: -.01em
}

.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-address-line {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273
}

.footer-contact-link {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273;
  text-decoration: none;
  transition: color .4s ease-in-out
}

.footer-contact-link:hover,
.footer-contact-link:focus {
  color: #3a3f40;
  text-decoration: underline
}

.footer-contact-link:focus {
  outline: 2px solid #6A7273;
  outline-offset: 2px
}

.footer-col-heading {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #3a3f40;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #D6CBB0
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-nav-item a {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273;
  text-decoration: none;
  transition: color .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.footer-nav-item a:hover,
.footer-nav-item a:focus {
  color: #3a3f40;
  text-decoration: underline
}

.footer-nav-item a:focus {
  outline: 2px solid #6A7273;
  outline-offset: 2px
}

.footer-divider {
  border: none;
  border-top: 1px solid #D6CBB0;
  margin: 0 0 24px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.footer-copy {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #6A7273
}

.footer-locale-flag {
  display: flex;
  align-items: center;
  gap: 6px
}

.footer-locale-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #A3B6B3
}

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

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

  .site-footer {
    padding: 48px 12px 24px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

@media (max-width: 320px) {
  .footer-grid {
    gap: 24px
  }
}

.cookie-strip {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 540px;
  background-color: #fff;
  border: 1px solid #D6CBB0;
  border-radius: 12px;
  box-shadow: 1px 12px 52px 0 #6a72731a;
  padding: 24px;
  z-index: 1200;
  display: none;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform .26s cubic-bezier(0.16, 1, 0.3, 1), opacity .26s ease-in-out
}

.cookie-strip.showing {
  transform: translateX(0);
  opacity: 1
}

.cookie-strip.hiding {
  transform: translateX(-40px);
  opacity: 0
}

.cookie-icon-mark {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.cookie-icon-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #6A7273;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.cookie-body-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273;
  margin-bottom: 6px
}

.cookie-use-list {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273;
  padding-left: 16px;
  margin: 0 0 12px
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px
}

.cookie-btn {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 6px;
  border: 1.5px solid #6A7273;
  background: transparent;
  color: #3a3f40;
  cursor: pointer;
  min-height: 44px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out
}

.cookie-btn:hover {
  background-color: #6A7273;
  color: #fff
}

.cookie-btn:focus {
  outline: 2px solid #6A7273;
  outline-offset: 3px
}

.cookie-btn.muted {
  border-color: #A3B6B3;
  color: #6A7273
}

.cookie-btn.muted:hover {
  background-color: #A3B6B3;
  color: #fff
}

.policy-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #2c3030
}

.policy-layout h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  margin-top: 0;
  color: #1e2626
}

.policy-layout h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #1e2626
}

.policy-layout h3 {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: -.01em;
  margin-top: 48px;
  margin-bottom: 12px;
  color: #2c3030
}

.policy-layout h4 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.005em;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2c3030
}

.policy-layout h5 {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #6A7273;
  text-transform: uppercase;
  letter-spacing: .06em
}

.policy-layout h6 {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #6A7273;
  text-transform: uppercase;
  letter-spacing: .08em
}

.policy-layout p {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 24px;
  color: #3a4040
}

.policy-layout ul,
.policy-layout ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px
}

.policy-layout ul ul,
.policy-layout ol ol,
.policy-layout ul ol,
.policy-layout ol ul {
  margin-bottom: 6px;
  margin-top: 6px
}

.policy-layout li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 6px;
  color: #3a4040
}

.policy-layout ul li {
  list-style-type: disc
}

.policy-layout ol li {
  list-style-type: decimal
}

.policy-layout a {
  color: #6A7273;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .35s ease-in-out;
  text-decoration-color: #6a727373
}

.policy-layout a:hover {
  color: #2c3030;
  text-decoration-color: #2c3030b3
}

.policy-layout a:visited {
  color: #A3B6B3;
  text-decoration-color: #a3b6b380
}

.policy-layout table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  border-radius: 12px;
  overflow: hidden
}

.policy-layout thead {
  background-color: #6a727314
}

.policy-layout thead tr {
  border-bottom: 2px solid #a3b6b366
}

.policy-layout tbody tr {
  border-bottom: 1px solid #d6cbb073;
  transition: background-color .2s ease-in-out
}

.policy-layout tbody tr:last-child {
  border-bottom: none
}

.policy-layout tbody tr:hover {
  background-color: #d6cbb026
}

.policy-layout th {
  padding: 12px 24px;
  text-align: left;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6A7273;
  font-weight: 600
}

.policy-layout td {
  padding: 12px 24px;
  color: #3a4040;
  vertical-align: top
}

.policy-layout hr {
  border: none;
  border-top: 1px solid #a3b6b359;
  margin-top: 48px;
  margin-bottom: 48px
}

.policy-layout div {
  font-size: 16px;
  line-height: 1.75
}

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

  .policy-layout h1 {
    font-size: 34px
  }

  .policy-layout h2 {
    font-size: 25px;
    margin-top: 48px
  }

  .policy-layout h3 {
    font-size: 19px
  }

  .policy-layout table {
    display: block;
    overflow-x: auto;
    border-radius: 6px
  }

  .policy-layout th,
  .policy-layout td {
    padding: 12px
  }
}

@media (max-width: 320px) {
  .policy-layout {
    padding: 24px 12px
  }

  .policy-layout h1 {
    font-size: 25px
  }

  .policy-layout h2 {
    font-size: 19px
  }

  .policy-layout p,
  .policy-layout li {
    font-size: 13px
  }
}

.abt {
  max-width: 100%;
  overflow-x: hidden
}

.abt .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.abt .blur-in {
  opacity: 0;
  filter: blur(8px);
  animation: blurReveal .55s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.abt .blur-in:nth-child(1) {
  animation-delay: .1s
}

.abt .blur-in:nth-child(2) {
  animation-delay: .22s
}

.abt .blur-in:nth-child(3) {
  animation-delay: .34s
}

.abt .blur-in:nth-child(4) {
  animation-delay: .46s
}

@keyframes blurReveal {
  to {
    opacity: 1;
    filter: blur(0)
  }
}

.abt .divider-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0
}

.abt .divider-dots span {
  display: block;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #A3B6B3 0px, #A3B6B3 3px, transparent 3px, transparent 10px)
}

.abt .divider-dots-alt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0
}

.abt .divider-dots-alt span {
  display: block;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #D6CBB0 0px, #D6CBB0 3px, transparent 3px, transparent 10px)
}

.abt .top-border {
  border-top: 3px solid #A3B6B3
}

.abt .bottom-border {
  border-bottom: 3px solid #D6CBB0
}

.abt .s1-outer {
  background: #f5f3ee;
  border-top: 3px solid #A3B6B3;
  border-bottom: 3px solid #D6CBB0;
  padding: 96px 0;
  position: relative
}

.abt .s1-outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(to right, #a3b6b312 0px, #a3b6b312 1px, transparent 1px, transparent 38px);
  pointer-events: none
}

.abt .s1-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.abt .s1-text {
  flex: 1 1 0;
  min-width: 0
}

.abt .s1-sidebar {
  flex: 0 0 320px;
  max-width: 320px
}

.abt .s1-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6A7273;
  margin-bottom: 24px;
  border-left: 3px solid #A3B6B3;
  border-bottom: 1px solid #D6CBB0;
  padding: 6px 12px;
  background: #a3b6b314;
  border-radius: 0
}

.abt .s1-h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #2e3333;
  margin-bottom: 24px;
  font-weight: 700
}

.abt .s1-h1 em {
  font-style: normal;
  color: #6A7273;
  display: block;
  font-size: 46px;
  font-weight: 300
}

.abt .s1-lead {
  font-size: 19px;
  line-height: 1.75;
  color: #3a3f3f;
  margin-bottom: 24px;
  text-align: justify
}

.abt .s1-shapes {
  position: relative;
  height: 48px;
  margin-bottom: 24px
}

.abt .s1-shapes-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(203deg, #A3B6B3, #6A7273);
  border-radius: 2px
}

.abt .s1-shapes-dot {
  position: absolute;
  top: 50%;
  left: 88px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D6CBB0;
  border: 2px solid #A3B6B3
}

.abt .s1-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  border-right: 4px solid #A3B6B3
}

.abt .s1-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px);
  transition: filter .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt .s1-img-wrap:hover img {
  filter: blur(0)
}

.abt .s1-img-edge {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, #f5f3ee8c 100%);
  pointer-events: none
}

.abt .s1-card {
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  border-top: 2px solid #D6CBB0
}

.abt .s1-card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #A3B6B3;
  margin-bottom: 12px
}

.abt .s1-card-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5050;
  text-align: justify
}

.abt .s1-since {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #6A7273;
  border-top: 1px solid #D6CBB0;
  padding-top: 6px
}

.abt .s2-outer {
  background: #fff;
  padding: 96px 0;
  border-bottom: 3px solid #A3B6B3
}

.abt .s2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px
}

.abt .s2-heading-cell {
  grid-column: 1 / 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.abt .s2-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2e3333;
  font-weight: 600;
  margin-bottom: 12px
}

.abt .s2-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #5a6060;
  text-align: justify
}

.abt .s2-img-cell {
  grid-column: 3;
  grid-row: 1 / 3
}

.abt .s2-img-frame {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  box-shadow: 1px 12px 52px 0 #a3b6b31a;
  position: relative
}

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

.abt .s2-img-frame:hover img {
  transform: scale(1.04)
}

.abt .s2-cards-row {
  grid-column: 1 / 3;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  gap: 24px
}

.abt .s2-item {
  flex: 1 1 0;
  background: linear-gradient(203deg, #d6cbb02e, #a3b6b31f);
  border-radius: 12px;
  padding: 24px;
  border-right: 3px solid #A3B6B3;
  box-shadow: 1px 2px 2px 0 #a3b6b30d;
  transition: box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1), transform .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt .s2-item:hover {
  box-shadow: 1px 7px 14px 0 #6a72731c;
  transform: translateY(-3px)
}

.abt .s2-item-num {
  font-size: 46px;
  font-weight: 700;
  color: #A3B6B3;
  line-height: 1.2;
  letter-spacing: -.03em
}

.abt .s2-item-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6A7273;
  margin-top: 6px;
  margin-bottom: 12px
}

.abt .s2-item-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5050;
  text-align: justify
}

.abt .s3-outer {
  background: linear-gradient(203deg, #d6cbb038, #a3b6b324);
  padding: 96px 0;
  border-top: 3px solid #D6CBB0
}

.abt .s3-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.abt .s3-portrait-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.abt .s3-portrait-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  border: 3px solid #A3B6B3;
  flex-shrink: 0
}

.abt .s3-portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .48s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt .s3-portrait-ring:hover img {
  transform: scale(1.07)
}

.abt .s3-portrait-name {
  font-size: 16px;
  font-weight: 600;
  color: #2e3333;
  text-align: center
}

.abt .s3-portrait-role {
  font-size: 13px;
  color: #6A7273;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase
}

.abt .s3-text-col {
  flex: 1 1 0;
  min-width: 0
}

.abt .s3-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2e3333;
  font-weight: 600;
  margin-bottom: 24px
}

.abt .s3-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5050;
  text-align: justify;
  margin-bottom: 24px
}

.abt .s3-img-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px
}

.abt .s3-img-thumb {
  flex: 1 1 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  aspect-ratio: 4/3
}

.abt .s3-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter .38s cubic-bezier(0.16, 1, 0.3, 1), transform .38s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.8)
}

.abt .s3-img-thumb:hover img {
  filter: saturate(1.1);
  transform: scale(1.03)
}

.abt .s3-quote {
  margin-top: 24px;
  padding: 24px;
  background: #ffffffb8;
  border-radius: 12px;
  border-left: 3px solid #A3B6B3;
  border-bottom: 1px solid #D6CBB0;
  box-shadow: 1px 2px 2px 0 #a3b6b30d
}

.abt .s3-quote-text {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3f3f;
  text-align: justify;
  font-style: italic
}

.abt .s3-quote-author {
  font-size: 13px;
  color: #6A7273;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

@media (max-width: 1024px) {
  .abt .s1-h1 {
    font-size: 46px
  }

  .abt .s1-h1 em {
    font-size: 34px
  }

  .abt .s1-sidebar {
    flex: 0 0 260px;
    max-width: 260px
  }

  .abt .s2-grid {
    grid-template-columns: 1fr 1fr
  }

  .abt .s2-heading-cell {
    grid-column: 1 / 3
  }

  .abt .s2-img-cell {
    grid-column: 1 / 3;
    grid-row: 2
  }

  .abt .s2-img-frame {
    min-height: 240px
  }

  .abt .s2-cards-row {
    grid-column: 1 / 3;
    grid-row: 3
  }

  .abt .s3-layout {
    gap: 24px
  }

  .abt .s3-portrait-col {
    flex: 0 0 180px
  }
}

@media (max-width: 768px) {
  .abt .s1-outer {
    padding: 48px 0
  }

  .abt .s1-layout {
    flex-direction: column
  }

  .abt .s1-sidebar {
    flex: none;
    max-width: 100%;
    width: 100%
  }

  .abt .s1-h1 {
    font-size: 34px
  }

  .abt .s1-h1 em {
    font-size: 25px
  }

  .abt .s2-outer {
    padding: 48px 0
  }

  .abt .s2-grid {
    grid-template-columns: 1fr
  }

  .abt .s2-heading-cell {
    grid-column: 1
  }

  .abt .s2-img-cell {
    grid-column: 1;
    grid-row: auto
  }

  .abt .s2-cards-row {
    grid-column: 1;
    flex-direction: column
  }

  .abt .s3-outer {
    padding: 48px 0
  }

  .abt .s3-layout {
    flex-direction: column
  }

  .abt .s3-portrait-col {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 24px
  }

  .abt .s3-img-row {
    flex-direction: column
  }
}

@media (max-width: 320px) {
  .abt .s1-h1 {
    font-size: 25px
  }

  .abt .s2-h2,
  .abt .s3-h2 {
    font-size: 25px
  }

  .abt .s2-item-num {
    font-size: 34px
  }

  .abt .pg-wrap {
    padding: 0 12px
  }
}

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

.techreq .tr-schema {
  display: none
}

.techreq .tb-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  position: relative
}

.techreq .tb-blob1 {
  position: absolute;
  top: 24px;
  left: -48px;
  width: 320px;
  height: 320px;
  background: #a3b6b32e;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0
}

.techreq .tb-blob2 {
  position: absolute;
  bottom: 48px;
  right: 0;
  width: 240px;
  height: 240px;
  background: #d6cbb038;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0
}

.techreq .tb-img-col {
  flex: 0 0 320px;
  position: relative;
  z-index: 1;
  animation: tbSlideLeft .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.techreq .tb-img-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 #6a72731a;
  position: relative
}

.techreq .tb-img-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: sepia(0.35) contrast(1.08) brightness(0.92) saturate(0.8)
}

.techreq .tb-img-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #6A7273;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.techreq .tb-text-col {
  flex: 1 1 0;
  position: relative;
  z-index: 1;
  animation: tbSlideRight .45s cubic-bezier(0.16, 1, 0.3, 1) .1s both
}

.techreq .tb-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  margin-bottom: 12px
}

.techreq .tb-h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2c3132;
  margin: 0 0 24px;
  font-weight: 700
}

.techreq .tb-tagline {
  font-size: 19px;
  line-height: 1.75;
  color: #6A7273;
  margin: 0 0 48px;
  text-align: justify
}

.techreq .tb-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.techreq .tb-btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #6A7273;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #6A7273;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease-in-out
}

.techreq .tb-btn-primary:hover {
  background: #4e5556;
  box-shadow: 1px 12px 52px 0 #6a72731a
}

.techreq .tb-btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #6A7273;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #A3B6B3;
  transition: border-color .45s ease-in-out, color .35s ease-in-out
}

.techreq .tb-btn-secondary:hover {
  border-color: #6A7273;
  color: #2c3132
}

.techreq .div-double {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.techreq .div-double span {
  display: block;
  height: 1px;
  background: linear-gradient(203deg, #A3B6B3, #6A7273)
}

.techreq .div-double span:last-child {
  opacity: .35
}

.techreq .req-outer {
  background: linear-gradient(203deg, #A3B6B3 0%, #6A7273 100%);
  padding: 96px 24px 48px;
  animation: tbSlideUp .5s cubic-bezier(0.16, 1, 0.3, 1) .2s both
}

.techreq .req-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.techreq .req-narrative {
  color: #fff
}

.techreq .req-narrative-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff9;
  margin-bottom: 12px
}

.techreq .req-narrative h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 700
}

.techreq .req-narrative p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffd9;
  margin: 0 0 24px;
  text-align: justify
}

.techreq .req-narrative p:last-child {
  margin-bottom: 0
}

.techreq .req-data {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.techreq .req-card {
  background: #ffffff1a;
  border: 1px solid #ffffff2e;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s ease-in-out;
  position: relative
}

.techreq .req-card:hover {
  background: #ffffff2e;
  border-color: #ffffff59
}

.techreq .req-card-tag {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #D6CBB0;
  color: #2c3132;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 0 0 6px 6px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.techreq .req-card h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.techreq .req-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.techreq .req-card ul li {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffffd9;
  padding-left: 16px;
  position: relative
}

.techreq .req-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D6CBB0
}

.techreq .div-spaced {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 24px
}

.techreq .div-spaced-line {
  border: none;
  border-top: 2px dashed #a3b6b373
}

.techreq .people-outer {
  padding: 48px 24px 96px;
  background: #fff;
  animation: tbSlideUp .5s cubic-bezier(0.16, 1, 0.3, 1) .25s both
}

.techreq .people-inner {
  max-width: 1100px;
  margin: 0 auto
}

.techreq .people-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px
}

.techreq .people-top h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3132;
  margin: 0;
  font-weight: 700;
  max-width: 520px
}

.techreq .people-top p {
  font-size: 16px;
  line-height: 1.75;
  color: #6A7273;
  margin: 0;
  max-width: 380px;
  text-align: right
}

.techreq .people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.techreq .person-card {
  border: 1px solid #a3b6b34d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 7px 14px 0 #a3b6b31c;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative
}

.techreq .person-card:hover {
  box-shadow: 1px 12px 52px 0 #6a72731a
}

.techreq .person-card-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #A3B6B3;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2
}

.techreq .person-portrait {
  flex: 0 0 140px;
  position: relative;
  overflow: hidden
}

.techreq .person-portrait img {
  display: block;
  width: 140px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.2) contrast(1.05) brightness(0.95) saturate(0.85)
}

.techreq .person-info {
  flex: 1 1 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px
}

.techreq .person-name {
  font-size: 19px;
  line-height: 1.2;
  color: #2c3132;
  font-weight: 700;
  margin: 0
}

.techreq .person-role {
  font-size: 13px;
  line-height: 1.2;
  color: #A3B6B3;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 0
}

.techreq .person-bio {
  font-size: 16px;
  line-height: 1.75;
  color: #6A7273;
  margin: 0;
  text-align: justify
}

.techreq .people-note {
  margin-top: 48px;
  border: 2px dashed #a3b6b380;
  border-radius: 12px;
  padding: 24px 48px;
  background: #d6cbb01f;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px
}

.techreq .people-note-icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(203deg, #A3B6B3, #6A7273);
  display: flex;
  align-items: center;
  justify-content: center
}

.techreq .people-note-icon svg {
  display: block
}

.techreq .people-note-text {
  font-size: 16px;
  line-height: 1.75;
  color: #6A7273;
  margin: 0;
  text-align: justify
}

@keyframes tbSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

@keyframes tbSlideRight {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

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

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

@media (max-width: 1024px) {
  .techreq .tb-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 48px
  }

  .techreq .tb-img-col {
    flex: none;
    width: 100%;
    max-width: 420px
  }

  .techreq .tb-img-frame img {
    height: 320px
  }

  .techreq .req-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .techreq .people-grid {
    grid-template-columns: 1fr
  }

  .techreq .people-top {
    flex-direction: column;
    align-items: flex-start
  }

  .techreq .people-top p {
    text-align: left
  }
}

@media (max-width: 768px) {
  .techreq .tb-h1 {
    font-size: 34px
  }

  .techreq .req-narrative h2 {
    font-size: 25px
  }

  .techreq .people-top h2 {
    font-size: 25px
  }

  .techreq .person-card {
    flex-direction: column
  }

  .techreq .person-portrait img {
    width: 100%;
    height: 200px;
    min-height: unset
  }

  .techreq .people-note {
    flex-direction: column;
    padding: 24px;
    gap: 12px
  }

  .techreq .tb-tagline {
    font-size: 16px
  }

  .techreq .req-outer {
    padding: 48px 24px
  }
}

@media (max-width: 320px) {
  .techreq .tb-wrap {
    padding: 24px 12px 48px
  }

  .techreq .tb-h1 {
    font-size: 25px
  }

  .techreq .tb-links {
    flex-direction: column
  }
}

.frst {
  max-width: 100%;
  overflow-x: hidden
}

.frst .pg-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.frst .divider-angled {
  width: 100%;
  height: 2px;
  background: linear-gradient(203deg, #A3B6B3, #6A7273);
  border: none;
  margin: 0
}

.frst .titl-blk {
  padding: 96px 24px 48px;
  text-align: center;
  background: #fff
}

.frst .titl-blk .pg-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

.frst .titl-text-area {
  max-width: 760px
}

.frst .titl-eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6A7273;
  margin-bottom: 24px;
  display: block
}

.frst .titl-h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2c3334;
  margin: 0 0 24px
}

.frst .titl-h1 .line-soft {
  display: block;
  font-size: 46px;
  color: #6A7273;
  font-weight: 300
}

.frst .titl-h1 .line-strong {
  display: block
}

.frst .titl-lead {
  font-size: 19px;
  line-height: 1.75;
  color: #4a5253;
  text-align: left;
  max-width: 600px;
  margin: 0 auto
}

.frst .titl-img-zone {
  width: 100%;
  max-width: 820px;
  position: relative
}

.frst .titl-img-deco {
  position: absolute;
  inset: -12px;
  border: 1.5px dashed #A3B6B3;
  border-radius: 12px;
  pointer-events: none;
  z-index: 1
}

.frst .titl-img-wrap {
  width: 100%;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 #6a72731a;
  position: relative
}

.frst .titl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) contrast(1.05);
  transition: filter .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.frst .titl-img-wrap:hover img {
  filter: saturate(1) contrast(1.02)
}

.frst .creators-blk {
  padding: 96px 24px;
  background: linear-gradient(203deg, #f5f3ef, #eef1f1);
  margin-left: 48px
}

.frst .creators-blk .pg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.frst .creators-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .creators-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3334;
  margin: 0 0 24px;
  font-weight: 300;
  text-transform: uppercase
}

.frst .creators-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify;
  margin-bottom: 24px
}

.frst .creators-portraits {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.frst .portrait-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 7px 14px 0 #6a72731c
}

.frst .portrait-img-wrap {
  width: 88px;
  min-width: 88px;
  height: 123px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.frst .portrait-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frst .portrait-caption {
  position: absolute;
  inset: 0;
  background: #6a7273d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 6px
}

.frst .portrait-img-wrap:hover .portrait-caption {
  opacity: 1
}

.frst .portrait-caption-txt {
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  text-align: center
}

.frst .portrait-meta {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.frst .portrait-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3334;
  line-height: 1.2
}

.frst .portrait-role {
  font-size: 13px;
  color: #6A7273;
  line-height: 1.5
}

.frst .portrait-desc {
  font-size: 13px;
  color: #4a5253;
  line-height: 1.75;
  text-align: justify;
  margin-top: 6px
}

.frst .belong-blk {
  padding: 96px 24px;
  background: #fff;
  margin-right: 48px
}

.frst .belong-blk .pg-inner {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.frst .belong-top {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start
}

.frst .belong-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3334;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 300
}

.frst .belong-sub {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .belong-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify
}

.frst .belong-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.frst .belong-col {
  background: linear-gradient(203deg, #f5f3ef, #eef1f1);
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid #A3B6B3
}

.frst .belong-col.not-col {
  border-top-color: #D6CBB0
}

.frst .belong-col-title {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6A7273;
  margin-bottom: 12px;
  display: block
}

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

.frst .belong-item {
  font-size: 16px;
  line-height: 1.5;
  color: #3a4344;
  padding-left: 12px;
  border-left: 2px solid #A3B6B3;
  border-bottom: 1px solid #a3b6b333;
  padding-bottom: 12px
}

.frst .belong-col.not-col .belong-item {
  border-left-color: #D6CBB0
}

.frst .avail-blk {
  padding: 96px 24px;
  background: linear-gradient(203deg, #eef1f1, #f5f3ef);
  margin-left: 48px
}

.frst .avail-blk .pg-inner {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.frst .avail-head {
  max-width: 560px
}

.frst .avail-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3334;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 300
}

.frst .avail-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .avail-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify
}

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

.frst .avail-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  display: flex;
  flex-direction: column
}

.frst .avail-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden
}

.frst .avail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter .55s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(1)
}

.frst .avail-img-wrap:hover img {
  filter: saturate(0) contrast(1.1)
}

.frst .avail-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3334d1;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.frst .avail-img-wrap:hover .avail-img-caption {
  transform: translateY(0)
}

.frst .avail-item-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.frst .avail-item-title {
  font-size: 19px;
  line-height: 1.2;
  color: #2c3334;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.frst .avail-item-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify;
  margin: 0
}

.frst .avail-item-detail {
  font-size: 13px;
  color: #6A7273;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #a3b6b34d
}

.frst .env-blk {
  padding: 96px 24px;
  background: #2c3334;
  margin-right: 48px;
  position: relative
}

.frst .env-bg-pan {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(203deg, #a3b6b30a 0px, #a3b6b30a 1px, transparent 1px, transparent 40px);
  animation: bgpan 18s linear infinite;
  pointer-events: none
}

@keyframes bgpan {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 0 -400px
  }
}

.frst .env-blk .pg-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start
}

.frst .env-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .env-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #D6CBB0;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300
}

.frst .env-body {
  font-size: 16px;
  line-height: 1.75;
  color: #c8d0cf;
  text-align: justify;
  margin-bottom: 24px
}

.frst .env-quote {
  border: 1.5px dashed #a3b6b366;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px
}

.frst .env-quote-text {
  font-size: 19px;
  line-height: 1.75;
  color: #D6CBB0;
  text-align: justify;
  margin: 0 0 12px
}

.frst .env-quote-accent {
  font-size: 25px;
  font-weight: 600;
  color: #A3B6B3;
  line-height: 1.2;
  display: block;
  margin-bottom: 6px
}

.frst .env-quote-source {
  font-size: 13px;
  color: #6A7273;
  letter-spacing: .06em
}

.frst .env-stats {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.frst .env-stat-item {
  background: #a3b6b314;
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid #A3B6B3;
  border-bottom: 1px solid #a3b6b326
}

.frst .env-stat-num {
  font-size: 46px;
  line-height: 1.2;
  color: #D6CBB0;
  font-weight: 600;
  letter-spacing: -.02em;
  display: block
}

.frst .env-stat-desc {
  font-size: 16px;
  color: #c8d0cf;
  line-height: 1.5
}

.frst .gap-blk {
  padding: 96px 24px;
  background: #fff;
  margin-left: 48px
}

.frst .gap-blk .pg-inner {
  display: flex;
  flex-direction: column;
  gap: 48px
}

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

.frst .gap-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .gap-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3334;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 300
}

.frst .gap-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify;
  margin-bottom: 24px
}

.frst .gap-img-wrap {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 #6a72731a;
  position: relative
}

.frst .gap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.65);
  transition: filter .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.frst .gap-img-wrap:hover img {
  filter: saturate(1)
}

.frst .gap-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3334cc;
  color: #D6CBB0;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.frst .gap-img-wrap:hover .gap-img-caption {
  transform: translateY(0)
}

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

.frst .gap-step {
  padding: 24px;
  background: linear-gradient(203deg, #f5f3ef, #eef1f1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.frst .gap-step-num {
  font-size: 46px;
  line-height: 1.2;
  color: #a3b6b380;
  font-weight: 600;
  letter-spacing: -.02em
}

.frst .gap-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3334;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em
}

.frst .gap-step-desc {
  font-size: 16px;
  color: #4a5253;
  line-height: 1.75;
  text-align: justify
}

.frst .cond-blk {
  padding: 96px 24px;
  background: linear-gradient(203deg, #eef1f1, #f5f3ef);
  margin-right: 48px
}

.frst .cond-blk .pg-inner {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.frst .cond-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start
}

.frst .cond-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A3B6B3;
  display: block;
  margin-bottom: 12px
}

.frst .cond-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2c3334;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 300
}

.frst .cond-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5253;
  text-align: justify
}

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

.frst .cond-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 2px 2px 0 #6a72730d;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid #D6CBB0
}

.frst .cond-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3334;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em
}

.frst .cond-card-desc {
  font-size: 16px;
  color: #4a5253;
  line-height: 1.75;
  text-align: justify
}

.frst .cond-closing {
  background: #2c3334;
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: space-between
}

.frst .cond-closing-text {
  font-size: 19px;
  line-height: 1.75;
  color: #c8d0cf;
  max-width: 600px
}

.frst .cond-closing-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0
}

.frst .btn-primary {
  display: inline-block;
  padding: 12px 48px;
  background: #6A7273;
  color: #fff;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 1px 7px 14px 0 #6a72731c;
  white-space: nowrap
}

.frst .btn-primary:hover {
  background: #4a5253;
  box-shadow: 1px 12px 52px 0 #6a72732e;
  color: #fff;
  text-decoration: none
}

.frst .btn-primary:focus {
  outline: 2px solid #A3B6B3;
  outline-offset: 3px
}

.frst .btn-secondary {
  display: inline-block;
  padding: 12px 48px;
  background: transparent;
  color: #A3B6B3;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid #A3B6B3;
  cursor: pointer;
  transition: background-color .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap
}

.frst .btn-secondary:hover {
  background: #a3b6b326;
  color: #D6CBB0;
  text-decoration: none
}

.frst .cond-note {
  font-size: 13px;
  color: #6A7273;
  line-height: 1.5;
  text-align: center
}

@media (max-width: 1024px) {

  .frst .creators-blk,
  .frst .avail-blk,
  .frst .gap-blk {
    margin-left: 24px
  }

  .frst .belong-blk,
  .frst .env-blk,
  .frst .cond-blk {
    margin-right: 24px
  }

  .frst .creators-blk .pg-inner {
    grid-template-columns: 1fr
  }

  .frst .avail-grid {
    grid-template-columns: 1fr 1fr
  }

  .frst .env-blk .pg-inner {
    grid-template-columns: 1fr
  }

  .frst .gap-top {
    grid-template-columns: 1fr
  }

  .frst .gap-steps {
    grid-template-columns: 1fr 1fr
  }

  .frst .cond-head {
    grid-template-columns: 1fr
  }

  .frst .cond-closing {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .frst .titl-h1 {
    font-size: 46px
  }
}

@media (max-width: 768px) {

  .frst .creators-blk,
  .frst .avail-blk,
  .frst .gap-blk {
    margin-left: 0
  }

  .frst .belong-blk,
  .frst .env-blk,
  .frst .cond-blk {
    margin-right: 0
  }

  .frst .titl-h1 {
    font-size: 34px
  }

  .frst .titl-h1 .line-soft {
    font-size: 25px
  }

  .frst .titl-img-wrap {
    height: 280px
  }

  .frst .belong-top {
    grid-template-columns: 1fr
  }

  .frst .belong-lists {
    grid-template-columns: 1fr
  }

  .frst .avail-grid {
    grid-template-columns: 1fr
  }

  .frst .gap-steps {
    grid-template-columns: 1fr
  }

  .frst .cond-items {
    grid-template-columns: 1fr
  }

  .frst .cond-closing {
    padding: 24px
  }

  .frst .portrait-card {
    flex-direction: column
  }
}

@media (max-width: 320px) {
  .frst .titl-h1 {
    font-size: 25px
  }

  .frst .titl-h1 .line-soft {
    font-size: 19px
  }

  .frst .env-stat-num,
  .frst .gap-step-num {
    font-size: 34px
  }
}

.ctus {
  max-width: 100%;
  overflow-x: hidden
}

.ctus .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.ctus .split-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #A3B6B3 0px, #A3B6B3 4px, transparent 4px, transparent 10px), repeating-linear-gradient(90deg, #D6CBB0 0px, #D6CBB0 4px, transparent 4px, transparent 10px);
  background-size: 14px 1px, 14px 1px;
  background-position: 0 0, 0 1px
}

.ctus .split-left {
  background-color: #6A7273;
  padding: 96px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden
}

.ctus .split-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/img_assets/18-tile.jpg);
  background-size: cover;
  background-position: center;
  opacity: .07;
  filter: grayscale(1);
  pointer-events: none
}

.ctus .split-left .deco-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(203deg, #D6CBB0, #A3B6B3)
}

.ctus .split-left .pg-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D6CBB0;
  margin-bottom: 24px;
  line-height: 1.2
}

.ctus .split-left .pg-heading {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 300;
  text-transform: uppercase
}

.ctus .split-left .pg-heading .kw-underline {
  display: inline;
  border-bottom: 2px solid #D6CBB0;
  padding-bottom: 2px
}

.ctus .split-left .pg-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #d6cbb0d9;
  text-align: justified;
  max-width: 380px;
  margin: 0
}

.ctus .split-right {
  background-color: #f5f3ee;
  padding: 96px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.ctus .split-right .contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px
}

.ctus .split-right .ci-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus .split-right .ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(203deg, #D6CBB0, #A3B6B3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 1px 2px 2px 0 #6a72730d
}

.ctus .split-right .ci-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #3d4445;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ctus .split-right .ci-text {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .split-right .ci-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6A7273;
  line-height: 1.2
}

.ctus .split-right .ci-value {
  font-size: 16px;
  line-height: 1.5;
  color: #2e3334
}

.ctus .split-right .ci-value a {
  color: #2e3334;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), color .35s ease-in-out
}

.ctus .split-right .ci-value a:hover {
  color: #6A7273;
  border-bottom-color: #A3B6B3
}

.ctus .split-right .region-note {
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273;
  border-left: 2px solid #D6CBB0;
  border-top: 1px solid #D6CBB0;
  padding: 12px;
  border-radius: 0 6px 6px 0;
  background: #a3b6b314
}

.ctus .form-band {
  background-color: #fff;
  padding: 96px 0;
  position: relative
}

.ctus .form-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/img_assets/our-IMG_7202.jpg);
  background-size: cover;
  background-position: center;
  opacity: .04;
  filter: grayscale(1);
  pointer-events: none
}

.ctus .form-band .fb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 1
}

.ctus .form-band .fb-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px
}

.ctus .form-band .fb-meta .fm-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #A3B6B3;
  line-height: 1.2
}

.ctus .form-band .fb-meta .fm-heading {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2e3334;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0
}

.ctus .form-band .fb-meta .fm-body {
  font-size: 16px;
  line-height: 1.75;
  color: #6A7273;
  text-align: justify;
  margin: 0
}

.ctus .form-band .fb-meta .fm-body+.fm-body {
  margin-top: 12px
}

.ctus .form-band .fb-meta .fm-deco-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(203deg, #D6CBB0, #A3B6B3);
  border-radius: 2px
}

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

.ctus .cform .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.ctus .cform .cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .cform .cf-field.full {
  grid-column: 1 / -1
}

.ctus .cform .cf-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #6A7273;
  line-height: 1.2
}

.ctus .cform .cf-label .req {
  color: #A3B6B3;
  margin-left: 2px
}

.ctus .cform input[type="text"],
.ctus .cform input[type="email"],
.ctus .cform select {
  font-size: 16px;
  line-height: 1.5;
  color: #2e3334;
  background: #f5f3ee;
  border: 1px solid #D6CBB0;
  border-radius: 6px;
  padding: 12px;
  box-shadow: inset 1px 2px 4px 0 #6a727312;
  transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none
}

.ctus .cform input[type="text"]::placeholder,
.ctus .cform input[type="email"]::placeholder {
  color: #6a727373;
  transition: opacity .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .cform input[type="text"]:focus::placeholder,
.ctus .cform input[type="email"]:focus::placeholder {
  opacity: 0
}

.ctus .cform input[type="text"]:focus,
.ctus .cform input[type="email"]:focus,
.ctus .cform select:focus {
  border-color: #A3B6B3;
  box-shadow: inset 1px 2px 4px 0 #6a727312 0 0 0 2px #a3b6b333
}

.ctus .cform .cf-select-wrap {
  position: relative
}

.ctus .cform .cf-select-wrap select {
  padding-right: 36px;
  cursor: pointer
}

.ctus .cform .cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #A3B6B3;
  pointer-events: none
}

.ctus .cform .radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px
}

.ctus .cform .radio-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer
}

.ctus .cform .radio-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D6CBB0;
  border-radius: 20px;
  background: #f5f3ee;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .35s ease-in-out, background .35s ease-in-out;
  box-shadow: inset 1px 1px 3px 0 #6a727314
}

.ctus .cform .radio-opt input[type="radio"]:checked {
  border-color: #6A7273;
  background: #6A7273;
  box-shadow: inset 0 0 0 3px #f5f3ee
}

.ctus .cform .radio-opt .ro-label {
  font-size: 16px;
  color: #2e3334;
  line-height: 1.5;
  cursor: pointer
}

.ctus .cform .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #a3b6b314;
  border-radius: 6px;
  border: 1px solid #a3b6b340
}

.ctus .cform .privacy-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #D6CBB0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .35s ease-in-out, background .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 1px 1px 3px 0 #6a727312;
  position: relative
}

.ctus .cform .privacy-row input[type="checkbox"]:checked {
  background: #6A7273;
  border-color: #6A7273
}

.ctus .cform .privacy-text {
  font-size: 13px;
  line-height: 1.75;
  color: #6A7273
}

.ctus .cform .privacy-text a {
  color: #6A7273;
  border-bottom: 1px solid #A3B6B3;
  text-decoration: none;
  transition: color .35s ease-in-out
}

.ctus .cform .privacy-text a:hover {
  color: #2e3334
}

.ctus .cform .cf-submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.ctus .cform .btn-send {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: #6A7273;
  border: none;
  border-radius: 6px;
  padding: 12px 48px;
  cursor: pointer;
  box-shadow: 1px 7px 14px 0 #6a72731c;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .2s ease-in-out;
  position: relative;
  overflow: hidden
}

.ctus .cform .btn-send:hover {
  background: #4e5657;
  box-shadow: 1px 12px 52px 0 #6a72731a;
  transform: translateY(-1px)
}

.ctus .cform .btn-send:active {
  transform: translateY(0);
  box-shadow: 1px 2px 2px 0 #6a72730d
}

.ctus .cform .btn-send:focus {
  outline: 2px solid #A3B6B3;
  outline-offset: 3px
}

.ctus .drop-anim {
  animation: dropSettle .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.ctus .drop-anim-delay {
  animation: dropSettle .55s cubic-bezier(0.16, 1, 0.3, 1) .15s both
}

@keyframes dropSettle {
  0% {
    opacity: 0;
    transform: translateY(-28px)
  }

  75% {
    transform: translateY(4px)
  }

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

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

  .ctus .split-left {
    padding: 96px 48px 48px
  }

  .ctus .split-right {
    padding: 48px
  }

  .ctus .form-band .fb-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

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

  .ctus .split-right {
    padding: 48px 24px
  }

  .ctus .split-left .pg-heading {
    font-size: 34px
  }

  .ctus .form-band {
    padding: 48px 0
  }

  .ctus .form-band .fb-inner {
    padding: 0 24px;
    gap: 48px
  }

  .ctus .cform .cf-row {
    grid-template-columns: 1fr
  }

  .ctus .form-band .fb-meta .fm-heading {
    font-size: 25px
  }
}

@media (max-width: 320px) {
  .ctus .split-left .pg-heading {
    font-size: 25px
  }

  .ctus .cform .radio-group {
    flex-direction: column
  }
}

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

.successPage .successCard {
  max-width: 540px;
  width: 100%;
  background: linear-gradient(203deg, #A3B6B3, #6A7273);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 1px 12px 52px 0 #6a72731a 1px 7px 14px 0 #6a72731c;
  text-align: center
}

.successPage .successCard .iconWrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #ffffff2e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: inset 1px 3px 4px 0 #6a72732e
}

.successPage .successCard .iconWrap svg {
  display: block
}

.successPage .successCard .successHeading {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 300;
  text-transform: uppercase
}

.successPage .successCard .successMsg {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffe0;
  margin: 0 0 48px;
  text-align: justify
}

.successPage .successCard .backBtn {
  display: inline-block;
  padding: 12px 48px;
  background: #ffffff26;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #ffffff59;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s ease-in-out;
  cursor: pointer
}

.successPage .successCard .backBtn:hover,
.successPage .successCard .backBtn:focus {
  background: #ffffff47;
  border-color: #fff9;
  outline: none
}

.successPage .successCard .backBtn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px
}

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

  .successPage .successCard {
    padding: 48px 24px
  }

  .successPage .successCard .successHeading {
    font-size: 25px
  }
}

@media (max-width: 320px) {
  .successPage .successCard {
    padding: 24px 12px
  }
}