* {
  box-sizing: border-box
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh
}

.pg-hd {
  position: relative;
  z-index: 100;
  background: linear-gradient(170deg, #FEFEFD 60%, #E0E2B7 100%);
  border-bottom: 2px solid #BFC34C;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  font-family: 'Roboto', sans-serif;
  overflow: hidden
}

.pg-hd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, #bfc34c17 100%);
  pointer-events: none
}

.hd-strip {
  background: #BFC34C;
  width: 100%
}

.hd-strip__pod {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px
}

.hd-strip__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #232400;
  letter-spacing: -.01em;
  line-height: 1.2
}

.hd-strip__proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #232400;
  flex-shrink: 0
}

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

.hd-strip__lnk {
  font-size: 15px;
  font-weight: 400;
  color: #232400;
  text-decoration: none;
  line-height: 1.2;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease-out;
  padding: 4px 0
}

.hd-strip__lnk:hover {
  border-color: #232400
}

.hd-strip__lnk:focus {
  outline: none;
  border-color: #232400;
  position: relative
}

.hd-strip__lnk:focus::after {
  content: "fókusz";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  background: #232400;
  color: #BFC34C;
  padding: 1px 4px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap
}

.hd-main__pod {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: flex-end;
  gap: 48px
}

.hd-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0
}

.hd-brand__logo-cell {
  width: 90px;
  height: 90px;
  background-color: #1e1e00;
  border: 2px solid #BFC34C;
  box-shadow: 2px 2px 3px 0 #bfc34c12 2px 8px 40px 0 #bfc34c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  flex-shrink: 0
}

.hd-brand__logo-cell img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block
}

.hd-brand__rule {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #BFC34C 60%, transparent 100%);
  border: none;
  margin: 0
}

.hd-brand__name {
  font-size: 21px;
  font-weight: 700;
  color: #232400;
  letter-spacing: -.03em;
  line-height: 1.2;
  white-space: nowrap
}

.hd-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0
}

.hd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  align-items: center
}

.hd-nav__item {
  display: flex
}

.hd-nav__lnk {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2a2b00;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  letter-spacing: -.01em;
  line-height: 1.2;
  transition: border-color .28s ease-out, background .22s ease;
  position: relative;
  white-space: nowrap
}

.hd-nav__lnk:hover {
  border-color: #BFC34C;
  background: #bfc34c1a
}

.hd-nav__lnk--act {
  border-color: #BFC34C;
  background: #bfc34c26;
  font-weight: 700
}

.hd-nav__lnk:focus {
  outline: none;
  border-color: #2a2b00
}

.hd-nav__lnk:focus::before {
  content: "fókusz";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  background: #2a2b00;
  color: #BFC34C;
  padding: 1px 4px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap
}

@media (max-width: 768px) {
  .hd-strip__pod {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 8px
  }

  .hd-main__pod {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .hd-nav {
    align-items: flex-start;
    width: 100%
  }

  .hd-nav__list {
    justify-content: flex-start
  }

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

@media (min-width: 769px) and (max-width: 1280px) {
  .hd-strip__pod {
    padding: 0 24px
  }

  .hd-main__pod {
    padding: 24px
  }
}

.pg-ft {
  font-family: 'Roboto', sans-serif;
  background: #232400;
  color: #E0E2B7
}

.ft-upper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ft-brand__logo-cell {
  width: 80px;
  height: 80px;
  background-color: #1e1e00;
  border: 2px solid #BFC34C;
  box-shadow: 2px 2px 3px 0 #bfc34c12;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 12px
}

.ft-brand__logo-cell img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block
}

.ft-brand__nm {
  font-size: 21px;
  font-weight: 700;
  color: #BFC34C;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 8px
}

.ft-brand__tag {
  font-size: 15px;
  font-weight: 300;
  color: #E0E2B7;
  line-height: 1.55
}

.ft-card {
  background: #bfc34c12;
  border: 1.5px solid #bfc34c38;
  border-radius: 8px;
  padding: 24px;
  box-shadow: inset 0 2px 6px 0 #bfc34c12
}

.ft-card__head {
  font-size: 15px;
  font-weight: 700;
  color: #BFC34C;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
  border-bottom: 1.5px solid #bfc34c33;
  padding-bottom: 8px
}

.ft-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px
}

.ft-card__row:last-child {
  margin-bottom: 0
}

.ft-card__ico {
  color: #BFC34C;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px
}

.ft-card__val {
  font-size: 15px;
  font-weight: 400;
  color: #E0E2B7;
  line-height: 1.55;
  word-break: break-word
}

.ft-card__lnk {
  color: #BFC34C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .26s ease-out
}

.ft-card__lnk:hover {
  border-color: #BFC34C
}

.ft-card__lnk:focus {
  outline: none;
  border-color: #E0E2B7;
  position: relative
}

.ft-card__lnk:focus::after {
  content: "fókusz";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  background: #BFC34C;
  color: #232400;
  padding: 1px 4px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap
}

.ft-lnks__head {
  font-size: 15px;
  font-weight: 700;
  color: #BFC34C;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
  border-bottom: 1.5px solid #bfc34c33;
  padding-bottom: 8px
}

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

.ft-lnks__a {
  font-size: 15px;
  font-weight: 400;
  color: #E0E2B7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .22s ease, border-color .22s ease;
  line-height: 1.55;
  display: inline-block;
  position: relative
}

.ft-lnks__a:hover {
  color: #BFC34C;
  border-color: #bfc34c80
}

.ft-lnks__a:focus {
  outline: none;
  color: #BFC34C;
  border-color: #BFC34C
}

.ft-lnks__a:focus::after {
  content: "fókusz";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  background: #BFC34C;
  color: #232400;
  padding: 1px 4px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap
}

.ft-lower {
  border-top: 1px solid #bfc34c2e;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.ft-copy {
  font-size: 15px;
  font-weight: 300;
  color: #e0e2b799;
  line-height: 1.2
}

.ft-copy strong {
  color: #e0e2b7d9;
  font-weight: 500
}

.ft-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center
}

.ft-logo-strip__cell {
  width: 60px;
  height: 60px;
  background-color: #1e1e00;
  border: 1.5px solid #bfc34c66;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0
}

.ft-logo-strip__cell img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block
}

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

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

@media (min-width: 769px) and (max-width: 1280px) {
  .ft-upper {
    padding: 48px 24px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .ft-lower {
    padding: 24px
  }

  .ft-brand {
    grid-column: 1 / -1
  }
}

.ck-pod {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1200;
  max-width: 320px;
  width: calc(100vw - 48px);
  background: #FEFEFD;
  border: 2px solid #BFC34C;
  border-radius: 22px;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  padding: 24px;
  font-family: 'Roboto', sans-serif;
  opacity: 0;
  transition: opacity .22s ease-out
}

.ck-pod--vis {
  opacity: 1
}

.ck-pod__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.ck-pod__svg {
  width: 36px;
  height: 36px
}

.ck-pod__body {
  font-size: 15px;
  color: #232400;
  line-height: 1.55;
  margin-bottom: 12px
}

.ck-pod__body strong {
  font-weight: 700
}

.ck-pod__acts {
  display: flex;
  gap: 12px;
  justify-content: flex-end
}

.ck-pod__btn {
  background: none;
  border: none;
  padding: 4px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #232400;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 8px;
  transition: color .2s ease-out;
  position: relative
}

.ck-pod__btn:hover {
  color: #8a8d00
}

.ck-pod__btn:focus {
  outline: none;
  color: #8a8d00
}

.ck-pod__btn:focus::after {
  content: "fókusz";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  background: #232400;
  color: #BFC34C;
  padding: 1px 4px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap
}

.ck-pod__btn--acc {
  color: #5a5e00;
  font-weight: 700
}

.ck-pod__btn--acc:hover {
  color: #BFC34C
}

.legal-inner-hgfs {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px;
  background: #FEFEFD;
  color: #1e2010
}

.legal-inner-hgfs h1 {
  font-size: 51px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1e2010;
  margin-bottom: 24px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 3px solid #BFC34C
}

.legal-inner-hgfs h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e2010;
  margin-top: 96px;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 4px solid #BFC34C;
  border-bottom: 1px solid #E0E2B7;
  padding-bottom: 12px
}

.legal-inner-hgfs h3 {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #1e2010;
  margin-top: 48px;
  margin-bottom: 12px
}

.legal-inner-hgfs h4 {
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: #2a2e12;
  margin-top: 48px;
  margin-bottom: 12px
}

.legal-inner-hgfs h5 {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  color: #2a2e12;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.legal-inner-hgfs h6 {
  font-size: 15px;
  line-height: 1.55;
  color: #3a4018;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.legal-inner-hgfs p {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2e12;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 80ch
}

.legal-inner-hgfs ul,
.legal-inner-hgfs ol {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2e12;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
  max-width: 80ch
}

.legal-inner-hgfs ul {
  list-style: none;
  padding-left: 0
}

.legal-inner-hgfs ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px
}

.legal-inner-hgfs ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 3px;
  background: #BFC34C;
  border-radius: 2px
}

.legal-inner-hgfs ol {
  list-style: decimal
}

.legal-inner-hgfs ol li {
  margin-bottom: 8px;
  padding-left: 8px
}

.legal-inner-hgfs ol li::marker {
  color: #BFC34C;
  font-size: 15px
}

.legal-inner-hgfs em,
.legal-inner-hgfs i {
  font-style: italic;
  color: #3a4018
}

.legal-inner-hgfs hr {
  border: none;
  border-top: 1px solid #E0E2B7;
  margin-top: 48px;
  margin-bottom: 48px;
  background: none
}

.legal-inner-hgfs div {
  margin-bottom: 24px
}

.legal-inner-hgfs div p:last-child {
  margin-bottom: 0
}

@media (max-width: 1280px) {
  .legal-inner-hgfs {
    padding: 96px 48px
  }

  .legal-inner-hgfs h1 {
    font-size: 37px
  }

  .legal-inner-hgfs h2 {
    font-size: 27px;
    margin-top: 48px
  }

  .legal-inner-hgfs h3 {
    font-size: 21px
  }
}

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

  .legal-inner-hgfs h1 {
    font-size: 27px
  }

  .legal-inner-hgfs h2 {
    font-size: 21px;
    margin-top: 48px
  }

  .legal-inner-hgfs h3 {
    font-size: 17px;
    margin-top: 24px
  }

  .legal-inner-hgfs h4 {
    font-size: 17px;
    margin-top: 24px
  }

  .legal-inner-hgfs p,
  .legal-inner-hgfs ul,
  .legal-inner-hgfs ol {
    font-size: 15px;
    max-width: 100%
  }

  .legal-inner-hgfs hr {
    margin-top: 24px;
    margin-bottom: 24px
  }
}

.srvd {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.srvd .ttl-blk {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 48px 96px;
  position: relative;
  background: #f5f6e8;
  border-bottom: 2px solid #BFC34C
}

.srvd .ttl-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#bfc34c12 1px, transparent 1px), linear-gradient(90deg, #bfc34c12 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.srvd .ttl-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1
}

.srvd .ttl-left h1 {
  font-size: 51px;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #1e2000;
  margin: 0;
  padding-left: 16px;
  border-left: 5px solid #BFC34C
}

.srvd .ttl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #3a3c00;
  font-weight: 600;
  background: #E0E2B7;
  padding: 4px 12px;
  border-radius: 8px;
  width: fit-content
}

.srvd .ttl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  color: #4a4c10
}

.srvd .ttl-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #FEFEFD;
  border: 1.5px solid #BFC34C;
  border-radius: 8px;
  padding: 4px 12px
}

.srvd .ttl-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.srvd .btn-pri {
  font-size: 17px;
  font-weight: 700;
  color: #1e2000;
  background: #FEFEFD;
  border: 3px solid #BFC34C;
  border-radius: 22px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s ease-out, color .18s ease-out
}

.srvd .btn-pri:hover {
  background: #BFC34C;
  color: #1e2000
}

.srvd .btn-pri:active {
  background: #a8ac2a
}

.srvd .btn-sec {
  font-size: 17px;
  font-weight: 600;
  color: #3a3c00;
  background: transparent;
  border: 2px solid #3a3c00;
  border-radius: 22px;
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease
}

.srvd .btn-sec:hover {
  border-color: #BFC34C;
  background: #E0E2B7
}

.srvd .copy-btn {
  font-size: 15px;
  font-weight: 600;
  color: #4a4c10;
  background: transparent;
  border: 2px solid #BFC34C;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s ease-out, color .18s ease-out
}

.srvd .copy-btn:hover {
  background: #BFC34C;
  color: #1e2000
}

.srvd .ttl-img-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  align-self: start
}

.srvd .ttl-img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.92);
  transition: filter .35s ease-out
}

.srvd .ttl-img-card:hover img {
  filter: saturate(1) brightness(1)
}

.srvd .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top left, #bfc34c73, transparent 60%);
  pointer-events: none
}

.srvd .img-like {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #FEFEFD;
  border: 2px solid #BFC34C;
  border-radius: 22px;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #3a3c00;
  display: flex;
  align-items: center;
  gap: 4px
}

.srvd .price-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #BFC34C;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 17px;
  font-weight: 900;
  color: #1e2000
}

.srvd .desc-sec {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  padding: 96px 96px 48px;
  background: #FEFEFD;
  position: relative
}

.srvd .desc-body {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.srvd .desc-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2c00;
  margin: 0;
  counter-increment: para
}

.srvd .desc-body p::before {
  content: counter(para, decimal-leading-zero) ". ";
  font-weight: 700;
  color: #BFC34C;
  margin-right: 4px
}

.srvd .desc-body {
  counter-reset: para
}

.srvd .desc-body h2 {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  color: #1e2000;
  letter-spacing: -.02em;
  margin: 0
}

.srvd .desc-body h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  color: #2a2c00;
  margin: 0
}

.srvd .desc-body em {
  color: #3a3c00;
  font-style: italic
}

.srvd .desc-body abbr {
  border-bottom: 1.5px dotted #BFC34C;
  cursor: help
}

.srvd .desc-body ol {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvd .desc-body ol li {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2c00
}

.srvd .desc-body figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #bfc34c14
}

.srvd .desc-body figcaption {
  font-size: 15px;
  color: #5a5c20;
  padding: 8px 12px;
  background: #E0E2B7
}

.srvd .desc-body a {
  color: #3a3c00;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 22px;
  transition: background .22s ease-out
}

.srvd .desc-body a:hover {
  background: #E0E2B7
}

.srvd .side-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  position: sticky;
  top: 24px
}

.srvd .info-card {
  background: #f5f6e8;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 2px 2px 3px 0 #bfc34c12;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.srvd .info-card h4 {
  font-size: 17px;
  font-weight: 900;
  color: #1e2000;
  margin: 0;
  letter-spacing: -.01em
}

.srvd .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #E0E2B7;
  font-size: 15px;
  color: #3a3c00
}

.srvd .info-row:last-child {
  border-bottom: none
}

.srvd .info-row strong {
  font-weight: 700;
  color: #1e2000
}

.srvd .seats-bar {
  height: 8px;
  background: #E0E2B7;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px
}

.srvd .seats-fill {
  height: 100%;
  background: #BFC34C;
  border-radius: 8px;
  width: 40%;
  transition: width .4s ease-out
}

.srvd .prog-sec {
  padding: 48px 96px 96px;
  position: relative;
  overflow: hidden
}

.srvd .prog-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, #E0E2B7 0%, transparent 65%);
  pointer-events: none;
  animation: bgshift 8s ease-in-out infinite alternate
}

@keyframes bgshift {
  0% {
    opacity: .5;
    transform: scale(1) translate(0, 0)
  }

  100% {
    opacity: 1;
    transform: scale(1.15) translate(-3%, -3%)
  }
}

.srvd .prog-sec .geo-deco {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid #bfc34c14;
  animation: geopulse 4s ease-in-out infinite;
  pointer-events: none
}

.srvd .prog-sec .geo-deco::after {
  content: '';
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 30px solid #e0e2b712
}

@keyframes geopulse {

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

  50% {
    transform: scale(1.06);
    opacity: 1
  }
}

.srvd .prog-hd {
  font-size: 37px;
  line-height: 1.2;
  font-weight: 900;
  color: #1e2000;
  letter-spacing: -.025em;
  margin: 0 0 48px;
  position: relative;
  z-index: 1
}

.srvd .prog-hd span {
  color: #BFC34C
}

.srvd .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  position: relative;
  z-index: 1
}

.srvd .step-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  background: #FEFEFD;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 2px 2px 3px 0 #bfc34c12;
  border: 1.5px solid transparent;
  transition: border-color .25s ease-out, box-shadow .25s ease-out
}

.srvd .step-item:hover {
  border-color: #BFC34C;
  box-shadow: 2px 7px 20px 0 #bfc34c14
}

.srvd .step-num {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: #BFC34C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 900;
  color: #1e2000;
  flex-shrink: 0
}

.srvd .step-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvd .step-body h5 {
  font-size: 17px;
  font-weight: 800;
  color: #1e2000;
  margin: 0
}

.srvd .step-body p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4c10;
  margin: 0
}

.srvd .step-body ul {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.srvd .step-body ul li {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4c10
}

.srvd .step-body dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.srvd .step-body dt {
  font-weight: 700;
  font-size: 15px;
  color: #1e2000
}

.srvd .step-body dd {
  font-size: 15px;
  color: #4a4c10;
  margin-left: 12px
}

.srvd .step-time {
  font-size: 15px;
  font-weight: 700;
  color: #3a3c00;
  background: #E0E2B7;
  border-radius: 8px;
  padding: 4px 12px;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0
}

.srvd .prog-body h2 {
  font-size: 27px;
  font-weight: 900;
  color: #1e2000;
  margin: 0
}

.srvd .prog-body mark {
  background: #BFC34C;
  color: #1e2000;
  border-radius: 4px;
  padding: 0 4px
}

.srvd .prog-body ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvd .prog-body ul li {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2c00
}

.srvd .prog-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2c00;
  margin: 0
}

.srvd .prog-body details {
  background: #f5f6e8;
  border-radius: 8px;
  padding: 12px 24px;
  border: 1.5px solid #E0E2B7
}

.srvd .prog-body summary {
  font-size: 17px;
  font-weight: 700;
  color: #1e2000;
  cursor: pointer;
  list-style: none
}

.srvd .prog-body summary::-webkit-details-marker {
  display: none
}

.srvd .prog-body dl {
  margin: 0
}

.srvd .prog-body dt {
  font-weight: 700;
  font-size: 17px;
  color: #1e2000
}

.srvd .prog-body dd {
  font-size: 15px;
  color: #4a4c10;
  margin-left: 12px;
  margin-bottom: 8px
}

.srvd .prog-body figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden
}

.srvd .prog-body figcaption {
  font-size: 15px;
  color: #5a5c20;
  padding: 8px;
  background: #E0E2B7
}

.srvd .prog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1
}

.srvd .petal-bg {
  position: absolute;
  left: -80px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: .12
}

@media (max-width: 1280px) {
  .srvd .ttl-blk {
    grid-template-columns: 1fr 260px;
    padding: 48px;
    gap: 24px
  }

  .srvd .desc-sec {
    grid-template-columns: 1fr;
    padding: 48px
  }

  .srvd .side-panel {
    position: static
  }

  .srvd .prog-sec {
    padding: 48px
  }
}

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

  .srvd .ttl-left h1 {
    font-size: 37px
  }

  .srvd .desc-sec {
    padding: 24px;
    gap: 24px
  }

  .srvd .prog-sec {
    padding: 24px
  }

  .srvd .prog-hd {
    font-size: 27px
  }

  .srvd .step-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto
  }

  .srvd .step-time {
    grid-column: 2
  }

  .srvd .ttl-actions {
    flex-direction: column
  }
}

.ct-us {
  background: #FEFEFD;
  padding: 0;
  overflow-x: clip;
  position: relative
}

.ct-us .pg-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px
}

.ct-us .sym-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.ct-us .sym-bg::before {
  content: "∑";
  position: absolute;
  top: 10%;
  right: -80px;
  font-size: 480px;
  color: #BFC34C;
  opacity: .05;
  line-height: 1.2
}

.ct-us .spot-sec {
  position: relative;
  padding: 96px 0 48px;
  z-index: 1
}

.ct-us .spot-sec .pg-wrap {
  position: relative
}

.ct-us .spot-drift {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 22px
}

.ct-us .spot-drift::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 48px;
  background: radial-gradient(circle at center, #bfc34c2e 0%, transparent 70%);
  animation: driftSpot 9s ease-in-out infinite alternate;
  top: -100px;
  left: -100px
}

@keyframes driftSpot {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(300px, 180px)
  }
}

.ct-us .lead-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 96px;
  position: relative;
  z-index: 1
}

.ct-us .lead-left {
  flex: 2
}

.ct-us .lead-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px
}

.ct-us .pg-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #3a3c0e;
  background: #E0E2B7;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-transform: uppercase
}

.ct-us .pg-h1 {
  font-size: 51px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1e2000;
  margin: 0 0 24px
}

.ct-us .pg-h1 span {
  color: #BFC34C
}

.ct-us .pg-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #2e3000;
  margin: 0
}

.ct-us .pg-desc b {
  color: #3a3c0e
}

.ct-us .info-card {
  background: #FEFEFD;
  border: 2px solid #E0E2B7;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ct-us .info-card__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct-us .info-card__ico {
  width: 36px;
  height: 36px;
  border-radius: 48px;
  background: #BFC34C;
  border: 2px solid #E0E2B7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-us .info-card__ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #1e2000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ct-us .info-card__lbl {
  font-size: 15px;
  font-weight: 700;
  color: #3a3c0e;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.ct-us .info-card__val {
  font-size: 15px;
  line-height: 1.55;
  color: #2e3000
}

.ct-us .info-card__val a {
  color: #3a3c0e;
  text-decoration: none;
  border-bottom: 1px solid #BFC34C;
  transition: background .25s ease-out, color .18s ease-out;
  padding: 0 4px;
  border-radius: 8px
}

.ct-us .info-card__val a:hover {
  background: #E0E2B7;
  color: #1e2000
}

.ct-us .avail-bar {
  margin-top: 8px
}

.ct-us .avail-bar__lbl {
  font-size: 15px;
  font-weight: 700;
  color: #3a3c0e;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px
}

.ct-us .avail-bar__track {
  background: #E0E2B7;
  border-radius: 48px;
  height: 10px;
  width: 100%;
  overflow: hidden
}

.ct-us .avail-bar__fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #BFC34C 0%, #9ea030 100%);
  border-radius: 48px;
  transition: width .38s ease-out
}

.ct-us .avail-bar__note {
  font-size: 15px;
  color: #3a3c0e;
  margin-top: 4px
}

.ct-us .form-sec {
  padding: 48px 0 96px;
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #E0E2B7 0%, transparent 60%)
}

.ct-us .form-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px
}

.ct-us .form-col {
  flex: 2;
  background: #FEFEFD;
  border-radius: 22px;
  border: 2.5px solid #BFC34C;
  padding: 48px;
  box-shadow: 2px 8px 40px 0 #bfc34c1c
}

.ct-us .form-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start
}

.ct-us .form-h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #1e2000;
  margin: 0 0 8px
}

.ct-us .form-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3c0e;
  margin: 0 0 24px
}

.ct-us .frm {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ct-us .frm__row {
  display: flex;
  flex-direction: row;
  gap: 24px
}

.ct-us .frm__fld {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.ct-us .frm__fld--full {
  flex: unset;
  width: 100%
}

.ct-us .frm__lbl {
  font-size: 15px;
  font-weight: 700;
  color: #2e3000;
  letter-spacing: .05em;
  text-transform: uppercase
}

.ct-us .frm__inp {
  background: #FEFEFD;
  border: 2px solid #E0E2B7;
  border-radius: 8px;
  padding: 12px;
  font-size: 17px;
  color: #1e2000;
  outline: none;
  transition: border-color .22s ease-out, box-shadow .28s ease;
  width: 100%;
  box-sizing: border-box
}

.ct-us .frm__inp::placeholder {
  color: #8a8c50;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.ct-us .frm__inp:focus {
  border-color: #BFC34C;
  box-shadow: 2px 2px 3px 0 #bfc34c12
}

.ct-us .frm__ta {
  resize: vertical;
  min-height: 120px
}

.ct-us .frm__sel {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%233a3c0e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer
}

.ct-us .frm__chk-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct-us .frm__chk {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #BFC34C;
  cursor: pointer
}

.ct-us .frm__chk-txt {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3c0e
}

.ct-us .frm__chk-txt a {
  color: #3a3c0e;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid #BFC34C;
  padding: 0 4px;
  border-radius: 8px;
  transition: background .2s ease-out
}

.ct-us .frm__chk-txt a:hover {
  background: #E0E2B7
}

.ct-us .frm__btn {
  position: relative;
  overflow: hidden;
  background: #FEFEFD;
  border: 3px solid #BFC34C;
  border-radius: 8px;
  padding: 12px 48px;
  font-size: 17px;
  font-weight: 800;
  color: #1e2000;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background .26s ease-out, color .2s ease-out, box-shadow .28s ease
}

.ct-us .frm__btn:hover {
  background: #BFC34C;
  color: #1e2000;
  box-shadow: 2px 7px 20px 0 #bfc34c14
}

.ct-us .frm__btn:focus-visible {
  outline: 3px solid #BFC34C;
  outline-offset: 3px
}

.ct-us .frm__btn:active {
  background: #E0E2B7
}

.ct-us .aside-card {
  background: #1e2000;
  border-radius: 22px;
  padding: 24px;
  color: #E0E2B7;
  box-shadow: 2px 8px 40px 0 #bfc34c1c
}

.ct-us .aside-card__h {
  font-size: 21px;
  font-weight: 900;
  color: #BFC34C;
  margin: 0 0 12px;
  letter-spacing: -.02em;
  line-height: 1.2
}

.ct-us .aside-card__p {
  font-size: 15px;
  line-height: 1.55;
  color: #E0E2B7;
  margin: 0
}

.ct-us .aside-card--light {
  background: #FEFEFD;
  border: 2px solid #E0E2B7;
  color: #2e3000
}

.ct-us .aside-card--light .aside-card__h {
  color: #1e2000
}

.ct-us .aside-card--light .aside-card__p {
  color: #3a3c0e
}

.ct-us .aside-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px
}

.ct-us .aside-hours__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #E0E2B7;
  border-bottom: 1px solid #e0e2b726;
  padding-bottom: 8px
}

.ct-us .aside-hours__row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.ct-us .aside-hours__day {
  font-weight: 700;
  color: #BFC34C
}

.ct-us .detail-sec {
  padding: 48px 0 96px;
  position: relative;
  z-index: 1
}

.ct-us .detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.ct-us .det-card {
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #E0E2B7;
  background: #FEFEFD;
  box-shadow: 2px 2px 3px 0 #bfc34c12;
  transition: box-shadow .26s ease-out, border-color .22s ease-out
}

.ct-us .det-card:hover {
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  border-color: #BFC34C
}

.ct-us .det-card--accent {
  background: #BFC34C;
  border-color: #BFC34C
}

.ct-us .det-card--accent .det-card__h {
  color: #1e2000
}

.ct-us .det-card--accent .det-card__p {
  color: #2e3000
}

.ct-us .det-card__ico-wrap {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: #E0E2B7;
  border: 2px solid #BFC34C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-us .det-card--accent .det-card__ico-wrap {
  background: #FEFEFD;
  border-color: #1e2000
}

.ct-us .det-card__ico-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #1e2000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ct-us .det-card__h {
  font-size: 21px;
  font-weight: 900;
  color: #1e2000;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.2
}

.ct-us .det-card__p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3c0e;
  margin: 0
}

.ct-us .det-card__num {
  font-size: 37px;
  font-weight: 900;
  color: #BFC34C;
  letter-spacing: -.03em;
  line-height: 1.2
}

.ct-us .det-card--accent .det-card__num {
  color: #1e2000
}

.ct-us .sec-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E0E2B7 30%, #BFC34C 60%, transparent 100%);
  border: none;
  margin: 0
}

@media (max-width: 1280px) {
  .ct-us .lead-row {
    gap: 48px
  }

  .ct-us .pg-h1 {
    font-size: 37px
  }

  .ct-us .form-inner {
    flex-direction: column
  }

  .ct-us .form-aside {
    flex-direction: row;
    flex-wrap: wrap
  }

  .ct-us .aside-card {
    flex: 1;
    min-width: 240px
  }

  .ct-us .detail-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .ct-us .pg-wrap {
    padding: 0 24px
  }

  .ct-us .lead-row {
    flex-direction: column;
    gap: 24px
  }

  .ct-us .pg-h1 {
    font-size: 27px
  }

  .ct-us .spot-sec {
    padding: 48px 0 24px
  }

  .ct-us .form-col {
    padding: 24px
  }

  .ct-us .frm__row {
    flex-direction: column;
    gap: 24px
  }

  .ct-us .detail-grid {
    grid-template-columns: 1fr
  }

  .ct-us .form-aside {
    flex-direction: column
  }

  .ct-us .aside-card {
    min-width: unset
  }

  .ct-us .form-h2 {
    font-size: 27px
  }
}

.bse {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.bse .ttl {
  position: relative;
  display: grid;
  grid-template-rows: auto auto
}

.bse .ttl__img-wrap {
  position: relative;
  overflow: hidden;
  max-height: 520px
}

.bse .ttl__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block
}

.bse .ttl__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, #bfc34c0a 0px, #bfc34c0a 1px, transparent 1px, transparent 4px);
  pointer-events: none
}

.bse .ttl__txt {
  background: #fff;
  padding: 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end
}

.bse .ttl__h1 {
  font-size: 51px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b1b1b;
  margin: 0
}

.bse .ttl__h1 .punct {
  color: #BFC34C
}

.bse .ttl__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0
}

.bse .ttl__sub .acc {
  color: #7a7d1e;
  font-weight: 700
}

.bse .ttl__act {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
  align-items: center
}

.bse .btn-pri {
  display: inline-block;
  padding: 12px 24px;
  border: 3px solid #BFC34C;
  background: transparent;
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .25s ease-out, color .18s ease-out
}

.bse .btn-pri:hover {
  background: #BFC34C;
  color: #1b1b1b
}

.bse .btn-pri:focus-visible {
  outline: 3px solid #BFC34C !important;
  outline-offset: 3px !important
}

.bse .btn-sec {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #3a3a3a;
  background: transparent;
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .22s ease, background .22s ease
}

.bse .btn-sec:hover {
  border-color: #BFC34C;
  background: #E0E2B7
}

.bse .btn-sec:focus-visible {
  outline: 3px solid #BFC34C !important;
  outline-offset: 3px !important
}

.bse .fit {
  background: #f4f5e8;
  padding: 96px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 128px
}

.bse .fit__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7a7d1e;
  margin: 0 0 12px
}

.bse .fit__h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b1b1b;
  margin: 0
}

.bse .fit__h2 .mk {
  display: inline;
  background: linear-gradient(to right, #BFC34C 0%, #BFC34C 100%);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 90%;
  padding-bottom: 4px
}

.bse .fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.bse .fit__grp {
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #d4d77a;
  background: #fff;
  box-shadow: 2px 7px 20px 0 #bfc34c14
}

.bse .fit__grp-ttl {
  font-size: 17px;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 8px
}

.bse .fit__grp p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0
}

.bse .fit__grp--no {
  border-color: #ccc;
  background: #fafaf5
}

.bse .fit__grp--no .fit__grp-ttl {
  color: #666
}

.bse .fit__grp--no p {
  color: #888
}

.bse .mth {
  padding: 96px;
  padding-top: 120px;
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.bse .mth__lead h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b1b1b;
  margin: 0 0 24px
}

.bse .mth__lead p {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0 0 12px
}

.bse .mth__lead p .acc {
  color: #7a7d1e;
  font-weight: 700
}

.bse .mth__img-wrap {
  grid-column: 1;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 8px 40px 0 #bfc34c1c
}

.bse .mth__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .38s ease-out
}

.bse .mth__img-wrap:hover img {
  transform: scale(1.03)
}

.bse .mth__stat {
  padding: 24px;
  border-radius: 22px;
  border: 3px solid #BFC34C;
  background: #f4f5e8;
  box-shadow: 2px 2px 3px 0 #bfc34c12
}

.bse .mth__stat-num {
  font-size: 51px;
  font-weight: 900;
  line-height: 1.2;
  color: #BFC34C;
  letter-spacing: -.03em
}

.bse .mth__stat-lbl {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a;
  margin-top: 8px
}

.bse .gap-sec {
  background: #1b1b1b;
  padding: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -24px 0;
  padding-top: 120px;
  padding-bottom: 120px
}

.bse .gap-sec__img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 8px 40px 0 #bfc34c1c
}

.bse .gap-sec__img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block
}

.bse .gap-sec__txt h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #FEFEFD;
  margin: 0 0 24px
}

.bse .gap-sec__txt h2 .mk {
  display: inline;
  background: linear-gradient(to right, #BFC34C 0%, #BFC34C 100%);
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: 0 92%;
  padding-bottom: 4px
}

.bse .gap-sec__txt p {
  font-size: 17px;
  line-height: 1.55;
  color: #d0d2b8;
  margin: 0 0 12px
}

.bse .gap-sec__steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.bse .gap-step {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.bse .gap-step__n {
  font-size: 27px;
  font-weight: 900;
  color: #BFC34C;
  line-height: 1.2;
  min-width: 32px
}

.bse .gap-step__txt {
  font-size: 15px;
  line-height: 1.55;
  color: #d0d2b8
}

.bse .ppl {
  padding: 96px;
  background: #FEFEFD;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 48px;
  align-items: start
}

.bse .ppl__portrait-wrap {
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  aspect-ratio: 1 / 1
}

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

.bse .ppl__bio h4 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 4px;
  letter-spacing: -.01em
}

.bse .ppl__bio-role {
  font-size: 15px;
  font-weight: 700;
  color: #7a7d1e;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.bse .ppl__bio p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0 0 12px
}

.bse .ppl__right h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b1b1b;
  margin: 0 0 24px
}

.bse .ppl__creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px
}

.bse .ppl__cred {
  padding: 12px;
  border-radius: 8px;
  background: #f4f5e8;
  border-left: 4px solid #BFC34C;
  border-top: 1px solid #d4d77a;
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a
}

.bse .ppl__right p {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0 0 12px
}

.bse .exp {
  padding: 96px;
  background: #f4f5e8;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.bse .exp__h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b1b1b;
  margin: 0 0 48px;
  grid-column: 1 / -1
}

.bse .exp__h2 .mk {
  display: inline;
  background: linear-gradient(to right, #BFC34C 0%, #BFC34C 100%);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 90%;
  padding-bottom: 4px
}

.bse .exp__inner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

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

.bse .exp__card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  border: 1px solid #e0e2b7
}

.bse .exp__card-name {
  font-size: 15px;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 4px
}

.bse .exp__card-role {
  font-size: 15px;
  color: #7a7d1e;
  margin: 0 0 12px
}

.bse .exp__card p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0
}

.bse .exp__rating {
  padding: 24px;
  border-radius: 22px;
  background: #1b1b1b;
  color: #FEFEFD;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  position: sticky;
  top: 24px
}

.bse .exp__rating-num {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.2;
  color: #BFC34C;
  letter-spacing: -.04em
}

.bse .exp__rating-lbl {
  font-size: 15px;
  color: #d0d2b8;
  margin-top: 8px;
  line-height: 1.55
}

.bse .exp__stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: 12px
}

.bse .exp__star {
  width: 18px;
  height: 18px
}

.bse .exp__star polygon {
  fill: #BFC34C
}

.bse .deco-lines {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none
}

.bse .deco-lines span {
  display: block;
  height: 2px;
  background: #BFC34C;
  border-radius: 2px;
  opacity: .5
}

.bse .ttl__txt {
  position: relative
}

@keyframes bgdrift {
  0% {
    background-position: center 0
  }

  100% {
    background-position: center 100%
  }
}

.bse .mth__bg-anim {
  animation: bgdrift 18s linear infinite alternate
}

@media (max-width: 1280px) {
  .bse .ttl__txt {
    padding: 48px;
    grid-template-columns: 1fr;
    gap: 24px
  }

  .bse .fit {
    padding: 48px;
    padding-bottom: 96px;
    grid-template-columns: 1fr
  }

  .bse .mth {
    padding: 48px;
    padding-top: 96px;
    grid-template-columns: 1fr 1fr
  }

  .bse .mth__lead {
    grid-column: 1 / -1
  }

  .bse .mth__img-wrap {
    grid-column: 1 / -1
  }

  .bse .gap-sec {
    padding: 96px 48px;
    grid-template-columns: 1fr
  }

  .bse .ppl {
    padding: 48px;
    grid-template-columns: 1fr 1fr
  }

  .bse .ppl__right {
    grid-column: 1 / -1
  }

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

  .bse .exp {
    padding: 48px
  }
}

@media (max-width: 768px) {
  .bse .ttl__img-wrap img {
    height: 280px
  }

  .bse .ttl__txt {
    padding: 24px;
    grid-template-columns: 1fr
  }

  .bse .ttl__h1 {
    font-size: 37px
  }

  .bse .fit {
    padding: 24px;
    padding-bottom: 72px;
    grid-template-columns: 1fr
  }

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

  .bse .mth {
    padding: 24px;
    padding-top: 48px;
    grid-template-columns: 1fr
  }

  .bse .mth__stat {
    grid-column: auto
  }

  .bse .gap-sec {
    padding: 72px 24px;
    clip-path: none;
    margin: 0
  }

  .bse .ppl {
    padding: 24px;
    grid-template-columns: 1fr
  }

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

  .bse .exp {
    padding: 24px
  }

  .bse .exp__h2 {
    font-size: 27px;
    margin-bottom: 24px
  }

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

  .bse .exp__rating {
    position: static
  }

  .bse .mth__lead h2 {
    font-size: 27px
  }

  .bse .gap-sec__txt h2 {
    font-size: 27px
  }

  .bse .fit__h2 {
    font-size: 27px
  }

  .bse .ppl__right h2 {
    font-size: 27px
  }
}

.bse a.lnk {
  color: #1b1b1b;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 22px;
  transition: background .2s ease-out
}

.bse a.lnk:hover {
  background: #E0E2B7
}

.abt {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.abt .pg-dec {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
  z-index: 0
}

.abt .t-blk {
  position: relative;
  padding: 96px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-bottom: 2px solid #E0E2B7
}

.abt .t-blk__deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  pointer-events: none
}

.abt .t-blk__deco .circ {
  position: absolute;
  border-radius: 48px;
  background: #E0E2B7;
  opacity: .18
}

.abt .t-blk__deco .circ--a {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 120px;
  border-radius: 48px;
  transform: rotate(20deg)
}

.abt .t-blk__deco .circ--b {
  width: 140px;
  height: 140px;
  bottom: 24px;
  left: 40px;
  border-radius: 48px;
  opacity: .12
}

.abt .t-blk__deco .circ--c {
  width: 80px;
  height: 80px;
  top: 80px;
  left: 55%;
  opacity: .09;
  border-radius: 48px
}

.abt .t-blk__txt {
  position: relative;
  z-index: 1
}

.abt .t-blk__txt .lbl {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #BFC34C;
  margin-bottom: 12px;
  border: 2px solid #BFC34C;
  padding: 4px 12px;
  border-radius: 8px
}

.abt .t-blk__txt h1 {
  font-size: 51px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b1e00;
  margin: 0 0 24px
}

.abt .t-blk__txt h1 .acc {
  color: #BFC34C
}

.abt .t-blk__txt .sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3d00;
  max-width: 480px
}

.abt .t-blk__txt .sub span {
  color: #7a7e00;
  font-weight: 600
}

.abt .t-blk__img-wrap {
  position: relative;
  z-index: 1
}

.abt .t-blk__frm {
  position: relative;
  border: 3px solid #BFC34C;
  border-radius: 22px;
  padding: 8px;
  background: #FEFEFD;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  animation: dropBounce .55s cubic-bezier(.22, .68, 0, 1.4) both
}

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

  60% {
    transform: translateY(8px);
    opacity: 1
  }

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

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

.abt .t-blk__frm img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block
}

.abt .t-blk__frm::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: radial-gradient(circle at 100% 100%, #e0e2b72e 0%, transparent 65%);
  pointer-events: none
}

.abt .t-blk__curve {
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 80px;
  pointer-events: none;
  z-index: 2
}

.abt .det {
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  background: radial-gradient(circle at 100% 100%, #E0E2B7 0%, #FEFEFD 55%);
  position: relative
}

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

.abt .det__port-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  aspect-ratio: 3/4;
  border: 2px solid #E0E2B7
}

.abt .det__port-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease-out
}

.abt .det__port-wrap:hover img {
  transform: scale(1.03)
}

.abt .det__port-wrap:hover {
  position: relative
}

.abt .det__port-wrap:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #1a1c0052 100%);
  pointer-events: none;
  border-radius: 22px
}

.abt .det__port-card {
  background: #FEFEFD;
  border: 2px solid #BFC34C;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 2px 2px 3px 0 #bfc34c12
}

.abt .det__port-card .nm {
  font-size: 17px;
  font-weight: 800;
  color: #1b1e00;
  margin: 0 0 4px
}

.abt .det__port-card .role {
  font-size: 15px;
  color: #BFC34C;
  font-weight: 600;
  margin: 0 0 12px
}

.abt .det__port-card .bio {
  font-size: 15px;
  line-height: 1.55;
  color: #3a3d00;
  margin: 0
}

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

.abt .det__body h2 {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: #1b1e00;
  margin: 0
}

.abt .det__body h2 .acc {
  color: #BFC34C
}

.abt .det__paras {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt .det__paras p {
  font-size: 17px;
  line-height: 1.55;
  color: #2d3000;
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid #E0E2B7;
  border-top: 1px solid #E0E2B7;
  border-radius: 0 8px 8px 0;
  padding-top: 8px;
  padding-bottom: 8px
}

.abt .det__paras p .num {
  font-weight: 800;
  color: #BFC34C;
  margin-right: 8px
}

.abt .det__paras p .hl {
  color: #7a7e00;
  font-weight: 600
}

.abt .det__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px
}

.abt .det__img-item {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  position: relative
}

.abt .det__img-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .28s ease-out
}

.abt .det__img-item:hover img {
  transform: scale(1.04)
}

.abt .det__img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, #bfc34c1f 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .25s ease
}

.abt .det__img-item:hover::after {
  opacity: 0
}

.abt .feat {
  padding: 96px 48px;
  background: #1b1e00;
  position: relative
}

.abt .feat__hd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center
}

.abt .feat__hd h3 {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: #FEFEFD;
  margin: 0
}

.abt .feat__hd h3 .acc {
  color: #BFC34C
}

.abt .feat__hd .sub {
  font-size: 17px;
  line-height: 1.55;
  color: #E0E2B7;
  max-width: 560px
}

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

.abt .feat__item {
  background: #272b00;
  border: 2px solid #BFC34C;
  border-radius: 22px;
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  transition: background .28s ease-out, box-shadow .22s ease;
  position: relative
}

.abt .feat__item:hover {
  background: #32370a;
  box-shadow: 2px 8px 40px 0 #bfc34c1c
}

.abt .feat__item--ctr {
  background: #BFC34C;
  border-color: #BFC34C
}

.abt .feat__item--ctr:hover {
  background: #d0d455
}

.abt .feat__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #bfc34c26;
  margin-bottom: 4px
}

.abt .feat__item--ctr .feat__icon {
  background: #1a1c0026
}

.abt .feat__icon svg {
  width: 28px;
  height: 28px
}

.abt .feat__lbl {
  font-size: 17px;
  font-weight: 800;
  color: #FEFEFD;
  letter-spacing: -.01em;
  line-height: 1.2
}

.abt .feat__item--ctr .feat__lbl {
  color: #1b1e00
}

.abt .feat__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #c8cc80
}

.abt .feat__item--ctr .feat__desc {
  color: #3a3d00
}

.abt .feat__mini {
  margin-top: 8px;
  background: #1b1e00;
  border: 2px solid #E0E2B7;
  border-radius: 8px;
  padding: 12px;
  width: 100%
}

.abt .feat__mini .mi-lbl {
  font-size: 15px;
  font-weight: 700;
  color: #BFC34C;
  margin: 0 0 4px
}

.abt .feat__mini .mi-val {
  font-size: 27px;
  font-weight: 900;
  color: #FEFEFD;
  line-height: 1.2
}

.abt .rpl {
  position: relative;
  overflow: hidden
}

.abt .rpl::before {
  content: '';
  position: absolute;
  border-radius: 48px;
  background: #bfc34c40;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: width .38s ease-out, height .38s ease-out, opacity .38s ease-out;
  opacity: 0;
  pointer-events: none
}

.abt .rpl:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1)
}

.abt a.il {
  color: #7a7e00;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background .18s ease-out, color .18s ease-out
}

.abt a.il:hover {
  background: #E0E2B7;
  color: #1b1e00
}

@media (max-width: 1280px) {
  .abt .t-blk {
    padding: 48px 24px;
    gap: 24px
  }

  .abt .det {
    grid-template-columns: 280px 1fr;
    padding: 48px 24px;
    gap: 24px
  }

  .abt .feat {
    padding: 48px 24px
  }

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

@media (max-width: 768px) {
  .abt .t-blk {
    grid-template-columns: 1fr;
    padding: 48px 24px 24px
  }

  .abt .t-blk__txt h1 {
    font-size: 37px
  }

  .abt .t-blk__frm img {
    height: 240px
  }

  .abt .det {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .abt .det__port-wrap {
    max-width: 280px
  }

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

  .abt .det__body h2 {
    font-size: 27px
  }

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

  .abt .feat__hd h3 {
    font-size: 27px
  }
}

.srvs {
  background: #FEFEFD;
  overflow-x: clip
}

.srvs .pg-top {
  background: #2a2d0e;
  padding: 96px 48px 48px;
  position: relative
}

.srvs .pg-top::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 32px;
  background: #2a2d0e;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1
}

.srvs .pg-top__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px
}

.srvs .pg-top__txt {
  flex: 2
}

.srvs .pg-top__label {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .12em;
  color: #BFC34C;
  border: 2px solid #BFC34C;
  border-radius: 8px;
  padding: 4px 12px;
  margin-bottom: 24px;
  text-transform: uppercase
}

.srvs .pg-top__h1 {
  font-size: 51px;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #FEFEFD;
  margin: 0 0 24px
}

.srvs .pg-top__h1 span {
  color: #BFC34C
}

.srvs .pg-top__desc {
  font-size: 17px;
  line-height: 1.55;
  color: #E0E2B7;
  max-width: 560px;
  margin: 0;
  counter-reset: none
}

.srvs .pg-top__deco {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.srvs .pg-top__shape {
  width: 160px;
  height: 160px;
  border: 3px solid #BFC34C;
  border-radius: 48px;
  opacity: .18;
  animation: flicker-outline 3.2s ease-in-out infinite
}

.srvs .pg-top__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 3px solid #BFC34C;
  border-radius: 50%;
  color: #BFC34C;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em
}

.srvs .pg-top__stat small {
  font-size: 15px;
  font-weight: 400;
  color: #E0E2B7;
  letter-spacing: .04em
}

@keyframes flicker-outline {

  0%,
  100% {
    opacity: .18
  }

  48% {
    opacity: .28
  }

  52% {
    opacity: .14
  }

  56% {
    opacity: .26
  }
}

.srvs .card-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px
}

.srvs .card-grid__hd {
  font-size: 37px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #2a2d0e;
  margin: 0 0 48px
}

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

.srvs .crd {
  background: #FEFEFD;
  border: 2px solid #E0E2B7;
  border-radius: 22px;
  box-shadow: 2px 7px 20px 0 #bfc34c14;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease-out, border-color .18s ease-out;
  animation: appear-up .38s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.srvs .crd:hover {
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  border-color: #BFC34C
}

@keyframes appear-up {
  from {
    opacity: 0;
    transform: scale(0.8)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.srvs .crd__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  aspect-ratio: 16/9
}

.srvs .crd__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
  transition: transform .38s ease-out
}

.srvs .crd:hover .crd__img-wrap img {
  transform: scale(1.04)
}

.srvs .crd__img-wrap .crd__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2a2d0e;
  color: #BFC34C;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 12px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.srvs .crd__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.srvs .crd__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.srvs .crd__badge {
  font-size: 15px;
  color: #5a5f1a;
  background: #E0E2B7;
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 600
}

.srvs .crd__title {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #2a2d0e;
  margin: 0
}

.srvs .crd__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #3d4010;
  margin: 0
}

.srvs .crd__info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  color: #5a5f1a
}

.srvs .crd__info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px
}

.srvs .crd__info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.srvs .crd__foot {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.srvs .crd__price {
  font-size: 27px;
  font-weight: 900;
  color: #2a2d0e;
  letter-spacing: -.02em
}

.srvs .crd__seats {
  font-size: 15px;
  color: #7a7f20
}

.srvs .crd__likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #5a5f1a;
  font-weight: 600
}

.srvs .crd__likes svg {
  width: 18px;
  height: 18px
}

.srvs .crd__btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #2a2d0e;
  background: transparent;
  border: 2.5px solid #BFC34C;
  border-radius: 22px;
  padding: 8px 24px;
  text-decoration: none;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  transition: background .22s ease-out, color .18s ease-out
}

.srvs .crd__btn:hover {
  background: #BFC34C;
  color: #2a2d0e
}

.srvs .crd__readtime {
  font-size: 15px;
  color: #7a7f20
}

.srvs .about-strip {
  background: linear-gradient(to bottom right, #E0E2B7, transparent);
  border-top: 1px solid #d4d87a;
  border-bottom: 1px solid #d4d87a;
  padding: 48px
}

.srvs .about-strip__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.srvs .about-strip__img-col {
  flex: 0 0 33%
}

.srvs .about-strip__img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  aspect-ratio: 4/3
}

.srvs .about-strip__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.05)
}

.srvs .about-strip__txt {
  flex: 1
}

.srvs .about-strip__h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2a2d0e;
  margin: 0 0 24px
}

.srvs .about-strip__h2 span {
  color: #6b7000
}

.srvs .about-strip__p {
  font-size: 17px;
  line-height: 1.55;
  color: #3d4010;
  margin: 0 0 12px
}

.srvs .about-strip__p:last-child {
  margin-bottom: 0
}

.srvs .team-sec {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px
}

.srvs .team-sec__hd {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2a2d0e;
  margin: 0 0 48px
}

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

.srvs .tmem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FEFEFD;
  border: 2px solid #E0E2B7;
  border-radius: 22px;
  padding: 24px;
  gap: 12px;
  box-shadow: 2px 2px 3px 0 #bfc34c12;
  transition: box-shadow .28s ease-out
}

.srvs .tmem:hover {
  box-shadow: 2px 7px 20px 0 #bfc34c14
}

.srvs .tmem__img-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #BFC34C;
  flex-shrink: 0
}

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

.srvs .tmem__name {
  font-size: 17px;
  font-weight: 900;
  color: #2a2d0e;
  margin: 0
}

.srvs .tmem__role {
  font-size: 15px;
  color: #6b7000;
  font-weight: 600;
  margin: 0
}

.srvs .tmem__bio {
  font-size: 15px;
  line-height: 1.55;
  color: #3d4010;
  margin: 0
}

.srvs .tmem--no-img .tmem__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #E0E2B7;
  border: 3px solid #BFC34C;
  display: flex;
  align-items: center;
  justify-content: center
}

.srvs .tmem--no-img .tmem__avatar svg {
  width: 48px;
  height: 48px;
  opacity: .5
}

.srvs .hex-sec {
  background: #2a2d0e;
  position: relative;
  padding: 96px 48px;
  overflow: hidden
}

.srvs .hex-sec__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 28px, #bfc34c0f 28px, #bfc34c0f 30px), repeating-linear-gradient(-60deg, transparent, transparent 28px, #bfc34c0f 28px, #bfc34c0f 30px);
  pointer-events: none
}

.srvs .hex-sec__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.srvs .hex-sec__hd {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #FEFEFD;
  margin: 0 0 48px
}

.srvs .hex-sec__hd span {
  color: #BFC34C
}

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

.srvs .hex-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: #bfc34c0f;
  border: 1.5px solid #bfc34c38;
  border-radius: 22px;
  padding: 24px;
  transition: background .22s ease-out, border-color .2s ease-out
}

.srvs .hex-item:hover {
  background: #bfc34c1f;
  border-color: #bfc34c80
}

.srvs .hex-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid #BFC34C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.srvs .hex-item__icon svg {
  width: 26px;
  height: 26px
}

.srvs .hex-item__h {
  font-size: 17px;
  font-weight: 900;
  color: #FEFEFD;
  margin: 0 0 8px;
  letter-spacing: -.01em
}

.srvs .hex-item__p {
  font-size: 15px;
  line-height: 1.55;
  color: #E0E2B7;
  margin: 0
}

@media (max-width: 1280px) {
  .srvs .pg-top__h1 {
    font-size: 37px
  }

  .srvs .cards {
    grid-template-columns: 1fr 1fr
  }

  .srvs .team-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .srvs .about-strip__inner {
    gap: 24px
  }
}

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

  .srvs .pg-top__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .srvs .pg-top__h1 {
    font-size: 27px
  }

  .srvs .pg-top__deco {
    flex-direction: row;
    align-items: center
  }

  .srvs .cards {
    grid-template-columns: 1fr
  }

  .srvs .card-grid {
    padding: 48px 24px
  }

  .srvs .about-strip {
    padding: 48px 24px
  }

  .srvs .about-strip__inner {
    flex-direction: column
  }

  .srvs .about-strip__img-col {
    flex: none;
    width: 100%
  }

  .srvs .team-sec {
    padding: 48px 24px
  }

  .srvs .team-grid {
    grid-template-columns: 1fr
  }

  .srvs .hex-sec {
    padding: 48px 24px
  }

  .srvs .hex-list {
    grid-template-columns: 1fr
  }
}

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

.suc__card {
  max-width: 600px;
  width: 100%;
  background: #FEFEFD;
  border: 2.5px solid #BFC34C;
  border-radius: 22px;
  padding: 48px;
  box-shadow: 2px 8px 40px 0 #bfc34c1c;
  text-align: center
}

.suc__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: block
}

.suc__icon circle {
  fill: none;
  stroke: #BFC34C;
  stroke-width: 2.5
}

.suc__icon polyline {
  fill: none;
  stroke: #BFC34C;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.suc__title {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b1b1b;
  margin: 0 0 12px
}

.suc__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a2e;
  margin: 0 0 24px
}

.suc__sub span {
  color: #8a8c30;
  font-weight: 700
}

.suc__divider {
  width: 48px;
  height: 3px;
  background: #BFC34C;
  border-radius: 8px;
  margin: 0 auto 24px
}

.suc__info {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a38;
  margin: 0 0 48px;
  text-align: left;
  border-left: 3px solid #E0E2B7;
  border-top: 1px solid #E0E2B7;
  border-radius: 8px;
  padding: 12px 24px;
  background: #f7f8ec
}

.suc__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.suc__btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease-out, color .18s ease-out, border-color .25s ease-out;
  border: 2.5px solid #BFC34C;
  background: #BFC34C;
  color: #1b1b1b;
  box-shadow: 2px 2px 3px 0 #bfc34c12
}

.suc__btn:hover {
  background: #a8ac38;
  border-color: #a8ac38;
  color: #fff
}

.suc__btn--out {
  background: transparent;
  color: #3a3a2e
}

.suc__btn--out:hover {
  background: #E0E2B7;
  border-color: #BFC34C;
  color: #1b1b1b
}

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

  .suc__title {
    font-size: 27px
  }

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

  .suc__btn {
    text-align: center
  }
}