/* google font impotrt  */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
/* shared styles  */
#who-we-are,
#story-timeline,
#our-principle-and-values,
#our-founder-message,
#recognition {
  padding: 100px 0;
}

/* all sections header  */
.common-header-label {
  display: inline-block;
  color: var(--pmk-green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.common-header-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 25px;
  height: 2.5px;
  background-color: var(--pmk-green);
}

.common-header-title {
  color: var(--pmk-blue-dark);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 12px;
}

.common-header-text {
  max-width: 780px;
  color: #6b7f79;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 8px;
}

/* smooth scrolling appearance  */
.common-header-label,
.common-header-title,
.common-header-text {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* smooth scrolling appearance  */
.section-visible .common-header-label,
.section-visible .common-header-title,
.section-visible .common-header-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.section-visible .common-header-label {
  transition-delay: 0.1s;
}

.section-visible .common-header-title {
  transition-delay: 0.2s;
}

.section-visible .common-header-text {
  transition-delay: 0.4s;
}

/* hero  */
#story-hero {
  height: calc(100vh - 90px);
  padding: 0px 10%;
  background: url("../assets/pictures/pmk-outdoor-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;

  overflow: hidden;
  position: relative;
  z-index: 1;
}

#story-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at left center,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 55%
    ),
    linear-gradient(
      90deg,
      rgba(11, 36, 22, 0.8) 0%,
      rgba(11, 36, 22, 0.6) 25%,
      rgba(11, 36, 22, 0.35) 50%,
      rgba(11, 36, 22, 0.12) 75%,
      transparent 100%
    );
  z-index: 2;
  pointer-events: none;
}

.story-hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  z-index: 3;
  position: relative;
}

.story-hero-label {
  display: inline-block;
  color: var(--pmk-green);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.story-hero-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 48px;
  height: 2px;
  background-color: var(--pmk-green);
}

.story-hero-title {
  color: var(--pmk-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.15;
  text-transform: capitalize;
}

.story-hero-description {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

.story-hero-tagline {
  /* margin-top: 12px; */
  position: relative;
}

.story-hero-tagline::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -8px;

  width: 72%;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M3 14 C28 20 82 2 117 12' fill='none' stroke='%2300946a' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}

.tagline-text {
  font-family: "Caveat", cursive;
  color: var(--pmk-green);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: normal;
}

.story-hero-content .contact-button-container {
  margin-top: 24px;
}

.story-hero-content .contact-button {
  color: var(--pmk-white);
  background-color: var(--pmk-green);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  gap: 6px;
}

.story-hero-content .contact-button svg {
  width: 20px;
  height: 20px;
  transition: all 0.35s ease-in-out;
}

.story-hero-content .contact-button:hover svg {
  transform: translateX(4px);
}

/* scroll indicator  */
.scroll-down-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  opacity: 0.75;
  z-index: 4;
}

.scroll-indicator-text {
  display: inline-block;
  color: #ffffffb8;
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 0;
  margin: 8px 0 0;
}

.scroll-indicator-icon {
  color: var(--pmk-green);
}

.scroll-indicator-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  animation: barAnimate 1.5s infinite ease-in-out;
}

@keyframes barAnimate {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* who we are sections styles  */
.pmk-journey-content {
  margin-top: 12px;
}

.pmk-journey-text {
  color: #6b7f79;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
  margin-top: 8px;
}

.pmk-sub-content {
  margin-top: 16px;
}

.sub-content-label {
  color: #6b7f79;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
}

.sub-content-list {
  margin-top: 8px;
  padding-left: 24px;
}

.list-text {
  list-style: disc;
  list-style-position: inside;

  color: #6b7f79;
  font-size: 0.9rem;
  font-weight: 400;
}

/* story board sections styles  */
.story-board-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 280px);
  grid-template-areas:
    "storyFigure1 storyFigure1 storyFigure2 storyFigure2"
    "storyFigure3 storyFigure4 storyFigure4 storyFigure5"
    "storyFigure3 storyFigure4 storyFigure4 storyFigure5"
    "storyFigure8 storyFigure9 storyFigure9 storyFigure10"
    "storyFigure6 storyFigure6 storyFigure7 storyFigure7";

  margin-top: 40px;
}

.story-figure-1 {
  grid-area: storyFigure1;
}

.story-figure-2 {
  grid-area: storyFigure2;
}

.story-figure-3 {
  grid-area: storyFigure3;
}

.story-figure-4 {
  grid-area: storyFigure4;
}

.story-figure-5 {
  grid-area: storyFigure5;
}

.story-figure-6 {
  grid-area: storyFigure6;
}

.story-figure-7 {
  grid-area: storyFigure7;
}

.story-figure-8 {
  grid-area: storyFigure8;
}

.story-figure-9 {
  grid-area: storyFigure9;
}

.story-figure-10 {
  grid-area: storyFigure10;
}

.story-figure {
  width: 100%;
  height: 100%;
  border: 3px solid var(--pmk-green-dark);
  position: relative;
}

.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  color: var(--pmk-white);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 8px 0 0;
  text-align: center;
  text-transform: capitalize;
  background-color: var(--pmk-green-dark);
}

/* pmk vmo inshort  layout  styles */
.inshort-vmo-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.inshort-vmo {
  padding: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0, 148, 106, 0.12);
  box-shadow: 0 8px 24px rgba(11, 36, 22, 0.08);
  transition: all 0.35s ease-in-out;
}

.inshort-vmo-title {
  color: var(--pmk-dark);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  position: relative;
}

.inshort-vmo-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 24px;
  height: 1.5px;
  background-color: var(--pmk-dark);
  transition: all 0.35s ease-in-out;
}

.inshort-vmo-text {
  color: #6b7f79;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
  transition: all 0.35s ease-in-out;
}

.inshort-vmo:hover {
  background: #f7f9f8;
  border-color: rgba(0, 148, 106, 0.25);
  box-shadow: 0 18px 40px rgba(11, 36, 22, 0.15);
}

.inshort-vmo:hover .inshort-vmo-title {
  color: var(--pmk-green-dark);
}

.inshort-vmo:hover .inshort-vmo-title::after {
  background-color: var(--pmk-green-dark);
}

.inshort-vmo:hover .inshort-vmo-text {
  color: var(--pmk-dark);
}

/* timeline sections styles  */
#story-timeline {
  background-color: var(--pmk-green-dark-sublet);
}

#story-timeline .story-common-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#story-timeline .common-header-label {
  color: var(--pmk-green);
}

#story-timeline .common-header-title {
  color: var(--pmk-white);
}

#story-timeline .common-header-text {
  color: rgba(255, 255, 255, 0.65);
}

/* timeline  */
.timeline-layout {
  margin-top: 80px;
  overflow: hidden;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;

  align-items: center;
  gap: 24px;
  margin-bottom: 32px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.65s ease;
}

.timeline-item:nth-child(odd) {
  transform: translateX(-24px);
}

.timeline-item:nth-child(even) {
  transform: translateX(24px);
}

.timeline-visible.timeline-item {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* timeline card */
.timeline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-card:hover {
  background-color: rgba(0, 148, 106, 0.1);
  transform: scale(1.025);
}

.timeline-card-subtitle {
  color: var(--pmk-green);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-card-title {
  color: var(--pmk-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 12px;
}

.timeline-card-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 8px;
}

.timeline-center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-hex {
  width: 72px;
  height: 72px;
  color: var(--pmk-white);
  font-size: 0.875rem;
  font-weight: 900;
  background-color: var(--pmk-green);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease-in-out;
}

.timeline-item:hover .timeline-center-container .timeline-hex {
  transform: rotate(30deg);
}

.timeline-step-label {
  color: var(--pmk-green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  margin-top: 8px;
}

.hex-bar-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    var(--pmk-green),
    rgba(0, 148, 106, 0.15)
  );
}

/* principle and values section styles  */
.principle-values-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: baseline;
  gap: 24px;
  margin-top: 80px;
  text-align: center;
}

.value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 16px;
}

.value-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-image img {
  width: 64px;
  height: 64px;
}

.value-title {
  color: var(--pmk-blue-dark);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  text-transform: capitalize;
}

.value-text {
  color: #6b7f79;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 10px;
}

/* founder message sections styles  */
#our-founder-message {
  background-color: var(--pmk-green-dark-sublet);
}

.our-founder-message-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  place-items: center;
}

.founder-figure-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: linear-gradient(
    160deg,
    var(--pmk-green-dark) 0%,
    var(--pmk-blue-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  position: relative;
}

.founder-figure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-monogram {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.fm-name {
  color: var(--pmk-white);
  font-size: 0.9rem;
  font-weight: 600;
}

.fm-post {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 400;
}

/* content  */
.mcb-label {
  color: var(--pmk-green);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.mcb-title {
  color: var(--pmk-white);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}

.founder-quote {
  max-width: 720px;
  color: var(--pmk-white);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 16px;
  margin: 16px 0 24px;
  border-left: 3px solid var(--pmk-green);
}

.founder-message-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 10px;
}

.founder-signature {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 4px;
}

.founder-name {
  color: var(--pmk-green);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.fs-post {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: normal;
}

.fs-org-name {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.825rem;
  font-weight: 300;
  line-height: normal;
}

/* recognition sections styles  */
#recognition .story-common-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recognition-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.recognition-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-align: center;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e7ece9;
  background-color: var(--pmk-white);

  transition: all 0.35s ease-in-out;
}

.recognition-field:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.recognition-field-image {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2px;
}

.recognition-field:last-child .recognition-field-image {
  width: 56px;
  height: 56px;
}

.recognition-field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recognition-field-title {
  color: var(--pmk-blue-dark);
  font-size: 1.15rem;
  font-weight: 600;
  padding-bottom: 12px;

  position: relative;
}

.recognition-field-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--pmk-green-dark);
}

.recognition-field-text {
  color: #6b7f79;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
}

/* reset footer  */
.footer-main {
  margin-top: 0 !important;
}

.copyright {
  background-color: #fff !important;
}

/* smooth scrolling appearance  */
.pmk-journey-text,
.sub-content-label,
.sub-content-list,
.story-board-layout,
.inshort-vmo,
.founder-figure-image,
.mcb-label,
.mcb-title,
.founder-quote,
.founder-message-text,
.founder-name,
.fs-post,
.fs-org-name,
.value-container,
.recognition-field {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.pmk-journey-text,
.sub-content-label,
.sub-content-list,
.mcb-label,
.mcb-title,
.founder-quote,
.founder-message-text,
.founder-name,
.fs-post,
.fs-org-name {
  transform: translateY(24px);
}

.inshort-vmo,
.value-container,
.recognition-field {
  transform: translateY(48px);
}

.founder-figure-image {
  transform: scale(0);
  transition:
    opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-visible.pmk-journey-text,
.section-visible.sub-content-label,
.section-visible.sub-content-list,
.section-visible.story-board-layout,
.section-visible.inshort-vmo,
.section-visible.founder-figure-image,
.section-visible.mcb-label,
.section-visible.mcb-title,
.section-visible.founder-quote,
.section-visible.founder-message-text,
.section-visible.founder-name,
.section-visible.fs-post,
.section-visible.fs-org-name,
.section-visible.value-container,
.section-visible.recognition-field {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-visible.founder-figure-image {
  transform: scale(1);
}

/* responsive styles:: small devices  */
@media (max-width: 767.98px) {
  /* shared styles  */
  #who-we-are,
  #story-timeline,
  #our-principle-and-values,
  #our-founder-message,
  #recognition {
    padding: 60px 0;
  }

  /* all sections common  header  */
  .common-header-label {
    font-size: 0.825rem;
  }

  .common-header-title {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-top: 12px;
  }

  .common-header-text {
    max-width: unset;
    font-size: 0.875rem;
  }

  /* hero  */
  #story-hero {
    height: 380px;
    padding: 0px 5%;
  }

  .story-hero-content {
    gap: 8px;
  }

  .story-hero-label {
    font-size: 0.875rem;
  }

  .story-hero-title {
    font-size: 1.75rem;
  }

  .story-hero-description {
    max-width: unset;
    font-size: 0.875rem;
    list-style: 1.2;
  }

  .tagline-text {
    font-size: 1.35rem;
  }

  .story-hero-content .contact-button-container {
    margin-top: 20px;
  }

  .story-hero-content .contact-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .scroll-down-indicator {
    display: none;
  }

  /* who we are sections styles  */
  .pmk-journey-text {
    font-size: 0.875rem;
  }

  .sub-content-label {
    font-size: 0.95rem;
  }

  .list-text {
    font-size: 0.85rem;
  }

  /* story board sections styles  */
  .story-board-layout {
    grid-template-areas:
      "storyFigure1 storyFigure1 storyFigure1 storyFigure1"
      "storyFigure2 storyFigure2 storyFigure2 storyFigure2"
      "storyFigure3 storyFigure3 storyFigure3 storyFigure3"
      "storyFigure4 storyFigure4 storyFigure4 storyFigure4"
      "storyFigure5 storyFigure5 storyFigure5 storyFigure5"
      "storyFigure9 storyFigure9 storyFigure9 storyFigure9";
  }

  .story-figure-6,
  .story-figure-7,
  .story-figure-8,
  .story-figure-10 {
    display: none;
  }

  /* pmk vmo inshort  layout  styles */
  .inshort-vmo-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }

  .inshort-vmo {
    padding: 22px;
  }

  .inshort-vmo-title {
    font-size: 0.95rem;
  }

  .inshort-vmo-text {
    font-size: 0.875rem;
  }

  /* timeline section  */
  .timeline-layout {
    margin-top: 48px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .timeline-item:nth-child(odd) .timeline-left-container {
    order: 2;
  }
  .timeline-item:nth-child(odd) .timeline-center-container {
    order: 1;
  }

  .timeline-item:nth-child(odd) .timeline-right-container,
  .timeline-item:nth-child(even) .timeline-left-container {
    display: none;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card-subtitle {
    font-size: 0.8rem;
  }

  .timeline-card-title {
    font-size: 1rem;
    margin-top: 8px;
  }

  .timeline-card-text {
    font-size: 0.8rem;
    line-height: normal;
    text-align: justify;
  }

  .timeline-hex {
    width: 48px;
    height: 48px;
    font-size: 0.675rem;
  }

  .timeline-step-label {
    font-size: 0.725rem;
    margin-top: 4px;
  }

  /* principle and values section styles  */
  .principle-values-layout {
    margin-top: 56px;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .value-image img {
    width: 56px;
    height: 56px;
  }

  .value-title {
    font-size: 1.15rem;
  }

  .value-text {
    font-size: 0.875rem;
  }

  /* founder message sections styles  */
  .our-founder-message-container {
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
  }

  .founder-figure-image {
    width: 250px;
    height: 320px;
  }

  .founder-monogram {
    padding: 10px 0;
    gap: 2px;
  }

  .fm-name {
    font-size: 0.8rem;
  }

  .fm-post {
    font-size: 0.8rem;
  }

  /* content  */
  .mcb-label {
    font-size: 0.875rem;
  }

  .mcb-title {
    font-size: 1.35rem;
    margin-top: 16px;
  }

  .founder-quote {
    max-width: unset;
    font-size: 1.05rem;
    padding: 8px 16px;
    margin: 16px 0 24px;
  }

  .founder-message-text {
    font-size: 0.875rem;
    text-align: justify;
    margin-top: 10px;
  }

  .founder-signature {
    margin-top: 24px;
  }

  .founder-name {
    font-size: 1rem;
  }

  .fs-post {
    font-size: 0.825rem;
  }

  .fs-org-name {
    font-size: 0.775rem;
  }

  /* recognition sections styles  */
  .recognition-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .recognition-field-image {
    width: 56px;
    height: 56px;
  }

  .recognition-field:last-child .recognition-field-image {
    width: 48px;
    height: 48px;
  }

  .recognition-field-title {
    font-size: 1.05rem;
  }

  .recognition-field-text {
    font-size: 0.875rem;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* shared styles  */
  #who-we-are,
  #story-timeline,
  #our-principle-and-values,
  #our-founder-message,
  #recognition {
    padding: 80px 0;
  }

  /* all sections common header  */
  .common-header-label {
    font-size: 0.825rem;
  }

  .common-header-title {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-top: 12px;
  }

  .common-header-text {
    max-width: 620px;
    font-size: 0.875rem;
  }

  /* hero  */
  #story-hero {
    height: 450px;
    padding: 0px 7%;
  }

  .story-hero-content {
    gap: 10px;
  }

  .story-hero-label {
    font-size: 0.875rem;
  }

  .story-hero-title {
    font-size: 2rem;
  }

  .story-hero-description {
    max-width: 460px;
    font-size: 0.9rem;
    list-style: 1.2;
  }

  .tagline-text {
    font-size: 1.35rem;
  }

  .story-hero-content .contact-button-container {
    margin-top: 22px;
  }

  .story-hero-content .contact-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .scroll-down-indicator {
    display: none;
  }

  /* who we are sections styles  */
  .pmk-journey-text {
    font-size: 0.875rem;
  }

  .sub-content-label {
    font-size: 0.95rem;
  }

  .list-text {
    font-size: 0.85rem;
  }

  /* story board sections styles  */
  .story-board-layout {
    grid-template-rows: repeat(4, 250px);
    grid-template-areas:
      "storyFigure1 storyFigure1 storyFigure2 storyFigure2"
      "storyFigure4 storyFigure4 storyFigure4 storyFigure4"
      "storyFigure4 storyFigure4 storyFigure4 storyFigure4"
      "storyFigure8 storyFigure9 storyFigure9 storyFigure10"
      "storyFigure6 storyFigure6 storyFigure7 storyFigure7";
  }

  .story-figure-3,
  .story-figure-5 {
    display: none;
  }

  .story-figure-4 img {
    object-fit: contain !important;
  }

  /* pmk vmo inshort  layout  styles */
  .inshort-vmo-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .inshort-vmo {
    padding: 22px;
  }

  .inshort-vmo-title {
    font-size: 1rem;
  }

  .inshort-vmo-text {
    font-size: 0.875rem;
  }

  /* timeline section  */
  .timeline-layout {
    margin-top: 48px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .timeline-item:nth-child(odd) .timeline-left-container {
    order: 2;
  }
  .timeline-item:nth-child(odd) .timeline-center-container {
    order: 1;
  }

  .timeline-item:nth-child(odd) .timeline-right-container,
  .timeline-item:nth-child(even) .timeline-left-container {
    display: none;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card-subtitle {
    font-size: 0.825rem;
  }

  .timeline-card-title {
    font-size: 1.1rem;
    margin-top: 8px;
  }

  .timeline-card-text {
    font-size: 0.825rem;
    line-height: normal;
    text-align: justify;
  }

  .timeline-hex {
    width: 56px;
    height: 56px;
    font-size: 0.7rem;
  }

  .timeline-step-label {
    font-size: 0.75rem;
    margin-top: 4px;
  }

  /* principle and values section styles  */
  .principle-values-layout {
    margin-top: 56px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-image img {
    width: 56px;
    height: 56px;
  }

  .value-title {
    font-size: 1.15rem;
  }

  .value-text {
    font-size: 0.875rem;
  }

  /* founder message sections styles  */
  .our-founder-message-container {
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
  }

  .founder-figure-image {
    width: 250px;
    height: 320px;
  }

  .founder-monogram {
    padding: 10px 0;
    gap: 2px;
  }

  .fm-name {
    font-size: 0.8rem;
  }

  .fm-post {
    font-size: 0.8rem;
  }

  /* content  */
  .mcb-label {
    font-size: 0.875rem;
  }

  .mcb-title {
    font-size: 1.35rem;
    margin-top: 16px;
  }

  .founder-quote {
    max-width: unset;
    font-size: 1.05rem;
    padding: 8px 16px;
    margin: 16px 0 24px;
  }

  .founder-message-text {
    font-size: 0.875rem;
    text-align: justify;
    margin-top: 10px;
  }

  .founder-signature {
    margin-top: 24px;
  }

  .founder-name {
    font-size: 1rem;
  }

  .fs-post {
    font-size: 0.825rem;
  }

  .fs-org-name {
    font-size: 0.775rem;
  }

  /* recognition sections styles  */
  .recognition-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 56px;
  }

  .recognition-field {
    padding: 20px;
  }

  .recognition-field-image {
    width: 56px;
    height: 56px;
  }

  .recognition-field:last-child .recognition-field-image {
    width: 48px;
    height: 48px;
  }

  .recognition-field-title {
    font-size: 1.1rem;
  }

  .recognition-field-text {
    font-size: 0.875rem;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* hero  */
  #story-hero {
    padding: 0px 8%;
  }

  .story-hero-title {
    font-size: 2.15rem;
  }

  .story-hero-description {
    max-width: 520px;
  }

  .tagline-text {
    font-family: "Caveat", cursive;
    color: var(--pmk-green);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: normal;
  }

  /* story board sections styles  */
  .story-board-layout {
    grid-template-rows: repeat(4, 250px);
    grid-template-areas:
      "storyFigure1 storyFigure1 storyFigure2 storyFigure2"
      "storyFigure4 storyFigure4 storyFigure4 storyFigure4"
      "storyFigure4 storyFigure4 storyFigure4 storyFigure4"
      "storyFigure8 storyFigure9 storyFigure9 storyFigure10"
      "storyFigure6 storyFigure6 storyFigure7 storyFigure7";
  }

  .story-figure-3,
  .story-figure-5 {
    display: none;
  }

  .story-figure-4 img {
    object-fit: contain !important;
  }

  /* pmk vmo inshort  layout  styles */
  .inshort-vmo-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* timeline section  */
  .timeline-layout {
    margin-top: 64px;
  }

  .timeline-item {
    grid-template-columns: 1fr 80px 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .timeline-card {
    padding: 24px;
  }

  .timeline-card-subtitle {
    font-size: 0.835rem;
  }

  .timeline-card-title {
    font-size: 1.125rem;
    margin-top: 10px;
  }

  .timeline-card-text {
    font-size: 0.835rem;
    line-height: normal;
  }

  .timeline-hex {
    width: 64px;
    height: 64px;
    font-size: 0.75rem;
  }

  .timeline-step-label {
    font-size: 0.775rem;
  }

  /* principle and values section styles  */
  .principle-values-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  /* recognition sections styles  */
  .recognition-layout {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* hero  */
  #story-hero {
    padding: 0px 9%;
  }

  .story-hero-title {
    font-size: 2.35rem;
  }

  /* story board  */
  .story-board-layout {
    grid-template-rows: repeat(4, 200px);
  }

  /* timeline section  */
  .timeline-layout {
    margin-top: 64px;
  }

  .timeline-item {
    grid-template-columns: 1fr 80px 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .timeline-card {
    padding: 24px;
  }

  .timeline-card-subtitle {
    font-size: 0.835rem;
  }

  .timeline-card-title {
    font-size: 1.15rem;
    margin-top: 10px;
  }

  .timeline-card-text {
    font-size: 0.835rem;
    line-height: normal;
  }

  .timeline-hex {
    width: 64px;
    height: 64px;
    font-size: 0.75rem;
  }

  .timeline-step-label {
    font-size: 0.775rem;
  }

  /* recognition sections styles  */
  .recognition-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
