.pg-hero {
  position: relative;
  width: 100%;
}
.pg-hero__bg {
  position: relative;
  width: 100%;
  height: 810px;
  overflow: hidden;
}
.pg-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pg-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease;
}
.pg-hero--playing .pg-hero__photo {
  opacity: 0;
}
.pg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(256.63deg, rgba(0, 45, 9, 0.65) 3.43%, rgba(139, 139, 139, 0.65) 96%);
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .pg-hero__bg {
    height: 299px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-hero__bg {
    height: 432px;
  }
}
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 253px;
  height: 47px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pg-btn--orange {
  background-color: #FFAB37;
  color: #ffffff;
}
.pg-btn--orange:hover {
  background-color: #E8952A;
  transform: translateY(-2px);
}
.pg-btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.pg-btn--outline-white:hover {
  background-color: #ffffff;
  color: #339B47;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .pg-btn {
    width: 188px;
    height: 35px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-btn {
    width: 217px;
    height: 41px;
    font-size: 16px;
  }
}
.pg-hero-cta {
  background-color: #339B47;
  padding: 40px 24px 180px;
  text-align: center;
}
.pg-hero-cta__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.pg-hero-cta__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.45px;
  line-height: normal;
  max-width: 343px;
  margin: 0 auto 1em;
}
.pg-hero-cta__divider {
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 16px auto 20px;
}
.pg-hero-cta__subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: -0.45px;
  line-height: normal;
  max-width: 343px;
  margin: 0 auto 14px;
  text-align: center;
}
.pg-hero-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pg-hero-cta {
    padding: 50px 120px 180px;
  }
  .pg-hero-cta__title {
    font-size: 28px;
    max-width: 528px;
  }
  .pg-hero-cta__divider {
    margin: 20px auto 24px;
  }
  .pg-hero-cta__subtitle {
    font-size: 14px;
    max-width: 525px;
    margin-bottom: 20px;
  }
  .pg-hero-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 23px;
  }
}
@media (min-width: 1024px) {
  .pg-hero-cta {
    padding: 60px 300px 280px;
  }
  .pg-hero-cta__title {
    font-size: 36px;
    max-width: 842px;
    letter-spacing: -0.45px;
  }
  .pg-hero-cta__divider {
    margin: 0 auto 29px;
  }
  .pg-hero-cta__subtitle {
    font-size: 16px;
    max-width: 839px;
    margin-bottom: 4px;
  }
  .pg-hero-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    margin-top: 4px;
  }
}
.pg-cards-row {
  position: relative;
  margin-top: -120px;
  padding-top: 0;
  padding-bottom: 50px;
}
.pg-cards-row__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
.pg-cards-row__card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 389/496;
  overflow: hidden;
  background-color: var(--card-color, #68C453);
  cursor: pointer;
}
.pg-cards-row__media {
  position: absolute;
  inset: 0 0 21.57% 0;
  overflow: hidden;
}
.pg-cards-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-cards-row__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(33, 99, 45, 0.88);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.pg-cards-row__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.pg-cards-row__label {
  position: absolute;
  top: 78.43%;
  left: 0;
  right: 0;
  height: 21.57%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.3px;
  padding: 0 12px;
  transition: top 0.4s ease, height 0.4s ease;
}
.pg-cards-row__desc {
  position: absolute;
  top: 42.34%;
  left: 12.08%;
  right: 11.9%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.3px;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}
.pg-cards-row__btn {
  position: absolute;
  top: 82.86%;
  bottom: 4.85%;
  left: 8.19%;
  right: 8.23%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s ease 0.15s, background-color 0.2s ease, color 0.2s ease;
}
.pg-cards-row__btn:hover {
  background-color: #ffffff;
  color: #21632d;
}
.pg-cards-row__card:hover .pg-cards-row__overlay {
  opacity: 1;
}
.pg-cards-row__card:hover .pg-cards-row__label {
  top: 16%;
  height: auto;
}
.pg-cards-row__card:hover .pg-cards-row__desc {
  opacity: 1;
}
.pg-cards-row__card:hover .pg-cards-row__btn {
  opacity: 1;
}

@media (min-width: 768px) {
  .pg-cards-row__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 17px;
    padding: 0 clamp(24px, 7.29vw, 56px);
    justify-content: center;
  }
  .pg-cards-row__card {
    flex: 1 1 0;
    width: auto;
    max-width: none;
  }
  .pg-cards-row__label {
    font-size: clamp(13px, -3.62px + 2.17vw, 22px);
    letter-spacing: -0.25px;
  }
  .pg-cards-row__desc {
    font-size: clamp(7.5px, -2.1px + 1.25vw, 11px);
    letter-spacing: -0.2px;
  }
  .pg-cards-row__btn {
    font-size: clamp(10px, -2.96px + 1.67vw, 15px);
  }
}
@media (min-width: 1024px) {
  .pg-cards-row {
    margin-top: -190px;
    padding-top: 0;
    padding-bottom: 97px;
  }
  .pg-cards-row__inner {
    flex-direction: row;
    gap: clamp(20px, 2.22vw, 32px);
    padding: 0 clamp(40px, 7.29vw, 105px);
  }
  .pg-cards-row__card {
    flex: 1 1 0;
    max-width: 389px;
  }
  .pg-cards-row__label {
    font-size: clamp(20px, -9.54px + 2.885vw, 32px);
    letter-spacing: -0.47px;
    padding: 0 16px;
  }
  .pg-cards-row__desc {
    font-size: clamp(11px, -1.31px + 1.202vw, 16px);
    letter-spacing: -0.47px;
  }
  .pg-cards-row__btn {
    font-size: clamp(16px, -3.69px + 1.923vw, 24px);
    border-width: 1.3px;
  }
}
.pg-immersion {
  position: relative;
  overflow: hidden;
}
.pg-immersion__bg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.pg-immersion__carousel {
  position: relative;
  z-index: 2;
  padding: 46px 0;
}
.pg-immersion__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 20px 40px;
  position: relative;
  z-index: 1;
}
.pg-immersion__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #F5F1E8;
  z-index: -1;
}
.pg-immersion__image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 20px 0 0;
}
.pg-immersion__image-wrap {
  position: relative;
  width: min(300px, 80vw);
  aspect-ratio: 615/607;
}
.pg-immersion__image-bg {
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: -20px;
  left: -20px;
  background-color: #339B47;
  transform: rotate(2.049deg);
  z-index: 0;
}
.pg-immersion__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.pg-immersion__content-col {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  position: relative;
}
.pg-immersion__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pg-immersion__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #339B47;
  letter-spacing: -0.4px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 16px;
  transition: opacity 0.8s ease;
}
.pg-immersion__desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #707070;
  letter-spacing: -0.4px;
  line-height: 1.5;
  text-align: center;
  max-width: 340px;
  margin: 0 0 28px;
  transition: opacity 0.8s ease;
}
.pg-immersion__desc p {
  margin: 0;
}
.pg-immersion__desc p + p {
  margin-top: 0.75em;
}
.pg-immersion__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 44px;
  border: 1px solid #339B47;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #339B47;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, opacity 0.8s ease;
}
.pg-immersion__cta:hover {
  background-color: #339B47;
  color: #fff;
}
.pg-immersion__btn-controls {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  order: 2;
}
.pg-immersion__image-col {
  order: 1;
}
.pg-immersion__content-col {
  order: 3;
}
.pg-immersion__prev, .pg-immersion__next {
  width: 36px;
  height: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #339B47;
  transition: color 0.2s;
}
.pg-immersion__prev svg, .pg-immersion__next svg {
  display: block;
  width: 100%;
  height: auto;
  stroke: currentColor;
  stroke-width: 2;
}
.pg-immersion__prev:hover, .pg-immersion__next:hover {
  color: #1f6b2e;
}

@media (min-width: 1024px) {
  .pg-immersion {
    min-height: 600px;
    margin: 46px 0;
    padding: 46px 0 46px;
  }
  .pg-immersion__bg {
    display: block;
  }
  .pg-immersion__carousel {
    padding-right: 46px;
  }
  .pg-immersion__carousel::before {
    right: 46px;
    left: auto;
    width: calc(100% - 46px);
  }
  .pg-immersion__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    min-height: 600px;
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }
  .pg-immersion__image-col {
    flex: 0 0 auto;
    display: block;
    width: auto;
    padding: 0 0 0 12%;
  }
  .pg-immersion__image-wrap {
    width: 615px;
    height: 607px;
    aspect-ratio: auto;
  }
  .pg-immersion__image-bg {
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    top: -30px;
    left: -30px;
  }
  .pg-immersion__content-col {
    flex: 1;
    width: auto;
    padding: 0 80px 0 0;
  }
  .pg-immersion__title {
    font-size: 36px;
    letter-spacing: -0.6px;
    margin-bottom: 28px;
  }
  .pg-immersion__desc {
    font-size: 20px;
    letter-spacing: -0.6px;
    max-width: 420px;
    margin-bottom: 36px;
    line-height: normal;
  }
  .pg-immersion__cta {
    min-width: 253px;
    height: 47px;
    font-size: 18px;
  }
  .pg-immersion__btn-controls {
    position: absolute;
    bottom: 12%;
    right: 40px;
    width: auto;
    order: 0;
  }
  .pg-immersion__image-col {
    order: 0;
  }
  .pg-immersion__content-col {
    order: 0;
  }
}
.pg-numbers {
  position: relative;
  width: 100%;
  min-height: 713px;
  overflow: hidden;
}
.pg-numbers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.pg-numbers__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.pg-numbers__overlay {
  position: absolute;
  inset: 0;
  background-color: #6F716B;
  mix-blend-mode: multiply;
}
.pg-numbers__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 713px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 164px;
  gap: 24px;
}
.pg-numbers__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #F4F9E0;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  text-align: center;
  align-self: flex-start;
  margin: 0 auto;
}
.pg-numbers__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 0;
  margin-top: 12px;
}
.pg-numbers__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}
.pg-numbers__value {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #9FF28C;
  letter-spacing: 0.83px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}
.pg-numbers__label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.83px;
  line-height: normal;
  text-align: center;
  max-width: 260px;
  text-transform: capitalize;
}
.pg-numbers__divider {
  flex: 0 0 3px;
  width: 3px;
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.pg-numbers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 253px;
  height: 51px;
  border: 1px solid #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .pg-numbers {
    min-height: 726px;
  }
  .pg-numbers__inner {
    min-height: 726px;
    padding: 75px 24px 48px;
    gap: 0;
  }
  .pg-numbers__heading {
    font-size: 24px;
    margin-left: 0;
    align-self: flex-start;
    margin-bottom: 20px;
  }
  .pg-numbers__stats {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .pg-numbers__stat {
    padding: 20px 0;
  }
  .pg-numbers__value {
    font-size: 42px;
    letter-spacing: 0.46px;
  }
  .pg-numbers__label {
    font-size: 16px;
    letter-spacing: 0.46px;
  }
  .pg-numbers__divider {
    width: 138px;
    height: 1px;
    flex: 0 0 auto;
    align-self: center;
  }
  .pg-numbers__cta {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-numbers {
    min-height: 400px;
  }
  .pg-numbers__inner {
    min-height: 400px;
    padding: 60px;
    gap: 16px;
  }
  .pg-numbers__heading {
    font-size: 24px;
    margin-left: 0;
  }
  .pg-numbers__stats {
    flex-direction: row;
  }
  .pg-numbers__value {
    font-size: 42px;
  }
  .pg-numbers__label {
    font-size: 16px;
  }
  .pg-numbers__divider {
    width: 1px;
    height: auto;
    flex: 0 0 1px;
    align-self: stretch;
  }
}
.pg-partners {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
}
.pg-partners__slider {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
}
.pg-partners__slider::before, .pg-partners__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.pg-partners__slider::before {
  left: 0;
  background: linear-gradient(to right, #fff 20%, transparent);
}
.pg-partners__slider::after {
  right: 0;
  background: linear-gradient(to left, #fff 20%, transparent);
}
.pg-partners__slider:hover .pg-partners__arrow {
  opacity: 1;
  pointer-events: auto;
}
.pg-partners__track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 8px 0;
  width: max-content;
  will-change: transform;
}
.pg-partners__item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-partners__item img {
  max-height: 88px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.pg-partners__item a {
  display: block;
}
.pg-partners__item a img {
  pointer-events: auto;
}
.pg-partners__item a:focus-visible {
  outline: 2px solid var(--pg-green, #4a7c59);
  outline-offset: 4px;
  border-radius: 4px;
}
.pg-partners__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, background-color 150ms ease;
}
.pg-partners__arrow--prev {
  left: 8px;
}
.pg-partners__arrow--next {
  right: 8px;
}
.pg-partners__arrow:hover {
  background: #fff;
  color: #222;
}
.pg-partners__arrow:focus-visible {
  outline: 2px solid var(--pg-green, #4a7c59);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .pg-partners {
    padding: 24px 0;
  }
  .pg-partners__track {
    gap: 36px;
  }
  .pg-partners__item img {
    max-height: 60px;
  }
  .pg-partners__arrow {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-partners__track {
    gap: 44px;
  }
  .pg-partners__item img {
    max-height: 72px;
  }
}
.pg-front {
  overflow-x: hidden;
}

.swiper {
  overflow: hidden;
  position: relative;
}
.swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  transition-timing-function: ease;
}
.swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper.swiper-initialized .swiper-slide {
  height: auto;
}