:root {
  --primary-colour: #003863;
  --text-colour-dark: #111;
  --text-colour-light: #f1f2f2;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-colour);
  /* background-color: transparent; */
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.2);

  /* Because we want header to be sticky later */
  height: 8rem;

  position: sticky;
  top: 0;
  z-index: 2000;
}

.header-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: var(--primary-colour); */
  background-color: transparent;

  /* Because we want header to be sticky later */
  height: 8rem;
  position: relative;
  background-color: transparent;
}

/* STICKY NAVIGATION */
.sticky .header-home,
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--primary-colour);
  z-index: 999;
  /* box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03); */
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.2);
}

.sticky .main-slider {
  margin-top: 8rem;
}

.logo {
  height: 5.6rem;
  padding-left: 4.8rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  /* gap: 10.8rem; */
  gap: 16rem;
  padding-right: 7.2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--text-colour-light);
  font-weight: 500;
  font-size: 1.6rem;
  /* letter-spacing: 0.5px; */
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);

  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  text-decoration: underline;
  color: #0284c7;
}

.current-page {
  display: inline-block;

  text-decoration: underline;
  color: #0284c7;
  font-weight: 500;
  font-size: 1.6rem;
  /* letter-spacing: 0.5px; */
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);

  transition: all 0.3s;
}

/* Animation */
@keyframes imgFadeInSlide {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes moveFromTop {
  0% {
    opacity: 0;
    transform: translate(-50%, -500%);
  }

  /* 80% {
    transform: translate(-50%, -20%);
  } */

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes moveFromBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 1000%);
  }

  /* 80% {
    transform: translate(-50%, -20%);
  } */

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes moveFromLeft {
  0% {
    opacity: 0;
    transform: translateX(200%);
    z-index: 10;
  }

  80% {
    transform: translateX(-15%);
    z-index: 10;
  }

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

@keyframes moveFromRight {
  0% {
    opacity: 0;
    transform: translateX(-200%);
    z-index: 10;
  }

  80% {
    transform: translateX(15%);
    z-index: 10;
  }

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

@keyframes imgCentre {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  /* 
  80% {
    transform: translateY(-10%);
  } */

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

@keyframes heroImage {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  /* 80% {
    transform: translate(0);
  } */

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

/* Hero */
/* .main-slider {
  height: calc(200vh-8rem);
} */

.slider {
  height: calc(100vh - 8rem);
  width: 100vw;
  /* width: 100%; */
  /* position: absolute;
  top: 0; */
  overflow: hidden;
}
.slide {
  height: 100%;
  width: 100%;

  /* position: absolute;
  top: 0; */
  display: none;
  z-index: -1;

  position: absolute;
  top: 0;
  overflow: hidden;
}

.slide__active {
  display: block;
  animation: imgFadeInSlide 2s;
}

.slide__active img {
  animation: zoomOut 9s;
}

.slide__text {
  color: var(--text-colour-light);
  font-size: 8rem;
  /* font-size: 80rem; */
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(00, 00, 00, 0.8);

  position: absolute;
  /* left: 8rem;
  bottom: 8rem; */
  left: 8%;
  /* left: 12%; */
  bottom: 6%;
}

.slide__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 3s;
}

.slide__img__active {
  transform: scale(1.4);
}

/* features */
.features {
  background-color: var(--primary-colour);
}

.secondary-heading {
  text-align: center;
  color: var(--text-colour-light);
  padding-top: 4.8rem;
  font-size: 3.6rem;
  font-weight: 600;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
  padding: 8rem 3.6rem 8rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  /* flex-wrap: wrap; */
}

.icon {
  color: var(--text-colour-light);
  height: 6rem;
  width: 6rem;
  --ionicon-stroke-width: 16px;
}

.heading-3 {
  color: var(--text-colour-light);
  font-size: 2.4rem;
  font-weight: 300;
}

.description-text {
  color: var(--text-colour-light);
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.5;
  padding: 0 2.4rem;
}

/* Homepage - links */

.link-container {
  position: relative;
  margin-top: -2px;
  margin-bottom: -2px;
  height: 70vh;
  /* cursor: pointer; */
  overflow: hidden;
  cursor: pointer;
}

.link-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* z-index: -1; */
  transition: filter 2s, transform 12s ease-out;
}

.link-img:hover {
  transform: scale(1.4);
  filter: brightness(0.6);
}

.link-text {
  background-color: hsla(0, 0%, 7%, 0.7);
  display: inline-block;
  position: absolute;
  top: 8%;
  left: 50%;
  /* z-index: 4; */
  color: var(--text-colour-light);

  transform: translateX(-50%);
  text-align: center;
  padding: 3rem 6.4rem;
}

.link-text-heading {
  font-size: 5.6rem;
  font-weight: 500;
}

.link-text-body {
  font-size: 2.4rem;
  font-weight: 300;
  padding-top: 3rem;
  letter-spacing: 0.5px;
}

.link-text-body br {
  display: none;
}

/* footer */
.footer {
  background-color: var(--primary-colour);
}

.footer-container-1 {
  display: flex;
  justify-content: space-between;
  padding: 6rem 4rem;
}

.footer-logo-img {
  height: 16rem;
}

.social {
  display: flex;
  gap: 3.6rem;
  align-items: center;
}

.social-icon {
  color: var(--text-colour-light);
  height: 4rem;
  width: 4rem;
}

.social-icon:hover {
  cursor: pointer;
}

.footer-social-logo {
  height: 4rem;
  fill: var(--text-colour-light);
  /* color: #fff; */
  cursor: pointer;
  width: 4rem;
}

.facebook:hover {
  fill: #4267b2;
}

.line:hover {
  fill: #06c755;
}

.twitter:hover {
  color: #00acee;
}

.youtube:hover {
  color: #ff0000;
}

.instagram:hover {
  color: #d62976;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-email-icon {
  color: var(--text-colour-light);
  height: 3rem;
  width: 3rem;
  --ionicon-stroke-width: 18px;
}

.footer-email-text {
  color: var(--text-colour-light);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-email-text:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer-language {
  color: var(--text-colour-light);
  width: 10rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-thai:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer-container-2 {
  display: flex;
  justify-content: space-between;
  padding: 4rem 4rem;
}

.copyright {
  color: var(--text-colour-light);
  font-size: 1.2rem;
  font-weight: 200;
}

/* product - hero */

/* .product-hero {
  position: relative;
} */

.product-hero-img-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* height: 100vh; */
}

/* .product-hero {
  height: 100vh;
} */

.product-hero-img {
  width: 100%;
  object-fit: cover;
}

.product-hero-img-mobile {
  display: none;
}

.primary-heading {
  color: var(--text-colour-light);
  /* font-size: 8rem; */
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  background-color: hsla(0, 0%, 7%, 0.7);
  padding: 2rem 4rem;

  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 10;
}

.heading-products {
  animation: moveFromTop 1.5s ease-out;
}

.img-left {
  animation: moveFromLeft 1.5s ease-out;
}

.img-right {
  animation: moveFromRight 1.5s ease-out;
}

.img-centre {
  animation: imgCentre 1.5s ease-out;
}

/* products features */

.pages-features {
  background-color: var(--primary-colour);
  margin-top: -2px;
  padding-bottom: 10rem;
}

.pages-h2 {
  padding-top: 8rem;
}

.container-3d {
  display: flex;
  justify-content: center;
  margin-top: 12rem;
}

.container-3d:hover .img-3d,
.container-3d:hover .product-feature-text {
  transform: skewY(0);
}

.container-3d:hover .item-3d:not(:first-child) {
  margin-left: 0;
}

.item-3d {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* margin-left: -200px; */
}

.item-3d:not(:first-child) {
  margin-left: -70px;
  transition: 1s;
}

.img-3d {
  width: 70%;
  align-self: center;
  transform: skewY(-10deg);
  transition: 1s;
}

.product-feature-text {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  transform: skewY(-10deg);
  height: 60px;
  transition: 1s;
  color: var(--text-colour-light);
}

/* products - items */
.product-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  margin: 12rem auto;
  row-gap: 4.8rem;
}

.product-img-container,
.service-img-container {
  position: relative;
  transition: all 0.5s;
}

.product-img-container:hover,
.service-img-container:hover {
  outline-offset: -0.5rem;
  outline: 0.5rem solid var(--text-colour-dark);
}

.product-item-img,
.service-item-img {
  width: 100%;
  /* display: block; */
  display: none;
  /* object-fit: cover; */
}

.img-active {
  display: block;
}

.product-btn,
.product-btn:link,
.product-btn:visited {
  color: var(--text-colour-light);
  border: none;
  background: none;
  height: 6rem;
  width: 6rem;
  position: absolute;
}

.product-btn:hover,
.product-btn:active {
  cursor: pointer;
  color: var(--primary-colour);
}

.btn-left {
  position: absolute;
  top: 50%;
  left: 0.5%;
  transform: translateY(-50%);
}

.btn-right {
  position: absolute;
  top: 50%;
  right: 0.5%;
  transform: translateY(-50%);
}

.arrow-icon {
  height: 5rem;
  width: 5rem;
  /* border: #fff; */
  background-color: none;
}

.service-item-description {
  background-color: var(--primary-colour);
  padding-top: 4.8rem;
  padding-left: 4rem;
  padding-right: 2.4rem;
}

.product-item-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-colour);
  /* padding-top: 4.8rem; */
  padding-left: 4rem;
  padding-right: 2.4rem;
}

.product-item-heading,
.service-item-heading {
  color: var(--text-colour-light);
  font-size: 3.2rem;
  font-weight: 500;
}

.product-item-text,
.service-item-text {
  color: var(--text-colour-light);
  font-size: 1.8rem;
  font-weight: 200;
  padding-top: 2rem;
  line-height: 1.8;
}

.service-item-text {
  font-size: 1.6rem;
}

.product-button,
.product-button:link,
.product-button:visited {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  color: var(--primary-colour);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  transition: 0.2s;
  border: none;
  align-self: flex-start;
}

.product-button:hover,
.product-button:active {
  cursor: pointer;
  outline-offset: 0.3rem;
  outline: 0.2rem solid var(--text-colour-light);
}

.download-btn {
  text-decoration: none;
  color: var(--primary-colour);
}

/* modal window */

.modal {
  position: fixed;
  /* top: 50%; */
  top: 12rem;

  left: 50%;
  /* transform: translate(-50%, -50%); */
  transform: translate(-50%, 0);
  /* // max-width: 60rem; */
  /* width: 75%; */
  /* width: 50%; */
  width: 60%;
  /* height: calc(95vh - 12rem); */
  height: 80vh;
  background-color: var(--primary-colour);
  /* padding: 5rem 6rem; */
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
  /* // transition: all 0.5s; */
  transition: all 0.5s;
}

.modal-grid {
  display: grid;
  /* grid-template-rows: 45vh 1fr; */
  grid-template-rows: 40vh 40vh;
}

.modal__close-btn {
  /* // font-family: inherit; */
  color: var(--text-colour-light);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;

  cursor: pointer;
  border: none;
  background: none;
  padding: 0.2rem;
  border-radius: 50%;
  background-color: var(--text-colour-dark);
}

.close-icon {
  height: 3rem;
  width: 3rem;
  padding-top: 0.2rem;
}

.modal__close-btn:hover,
.modal__close-btn:active {
  /* // font-family: inherit; */
  color: #7dd3fc;
}

.modal__img {
  width: 100%;
  height: 100%;
  /* width: 100%; */

  object-fit: cover;
  /* display: block; */
  /* margin: 0 auto; */
  /* align-self: center; */
}

.modal-description {
  margin: 3rem 5rem;
  /* position: relative; */
  /* height: 100%; */
  overflow-y: scroll;
}

.modal__title {
  color: var(--text-colour-light);
  text-align: center;
  font-size: 2.4rem;
  /* margin-top: 4rem; */
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.modal__text {
  font-size: 1.6rem;
  color: var(--text-colour-light);
  line-height: 1.8;
  text-indent: 8%;
  /* padding-top: 1.2rem; */
}

.modal__order-list {
  font-size: 1.6rem;
  color: var(--text-colour-light);
  line-height: 1.8;
  list-style-position: inside;
  padding-top: 2rem;
}

/* .modal__order-list-item {
  list-style-position: inside;
} */

.next-paragraph {
  padding-top: 1.6rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;

  transition: all 0.5s;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

/* services page */
/* services - hero section */

.hero-img {
  height: calc(100vh - 8rem);
  object-fit: cover;

  /* background-size: cover; */
  animation: heroImage 1s ease-out;
  /* position: relative; */
  width: 100%;
}

/* .services {
  background-image: linear-gradient(to bottom, rgba(#000, 0), rgba(#000, 0.65)),
    url(../img/services/service-hero.jpeg);
  background-image: url(../img/services/service-hero.jpeg);
  background-size: cover;
} */

.heading-hero {
  white-space: nowrap;
  animation: moveFromBottom 1s ease-out;
}

/* services - photos */
.container-photos {
  background-color: var(--primary-colour);
  width: 65%;
  height: 70vh;
  margin: 8rem auto;
  margin-bottom: 2rem;
  position: relative;
}

.services-photos {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(#000, 0.4);
  /* border-radius: 20px; */
  position: absolute;
  /* z-index: 5; */
  transition: all 0.5s;
  outline-offset: 1rem;
}

.p-1 {
  left: 0;
  top: 0;
  z-index: 5;
}

.p-2 {
  left: 12rem;
  top: 20rem;
  z-index: 15;
}
.p-3 {
  right: 0;
  top: 8rem;
  z-index: 10;
}

.services-photos:hover {
  outline: 0.8rem solid var(--text-colour-dark);
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(#000 0.5);
  z-index: 20;
}

.services-h3 {
  /* width: 60%;
  margin: 0 auto; */
  text-align: center;
  color: var(--text-colour-light);
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1.4;
  padding-top: 6.4rem;
}

.services-features {
  padding-bottom: 6.4rem;
}

/* services - items */

.services-items {
  width: 90%;
  margin: 10.8rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(4, 1fr); */
  grid-template-rows: auto auto auto auto;
  gap: 4.8rem;
  /* align-items: end; */
}

.service-item-description {
  /* height: 30vh; */
  /* height: 50vh; */
  height: 48rem;
  padding-bottom: 4.8rem;
}

.service-item-long {
  height: 58rem;
}

.service-item-heading {
  font-size: 2.8rem;
  font-weight: 400;
}

/* about page */

/* .hero-img-about {
  width: 100%;
} */

.heading-about {
  white-space: nowrap;
  animation: moveFromBottom 1s ease-out;
}

.about-name {
  background-color: var(--text-colour-light);
  padding: 9.6rem 0 6.4rem 0;
}

.about-name-logo {
  height: 12rem;
  display: block;
  margin: 0 auto;
}

.about-name-heading-primary {
  text-align: center;
  color: var(--text-colour-dark);
  font-size: 4.8rem;
  font-weight: 500;
  padding-top: 6.4rem;
}

.about-name-heading-primary span {
  color: var(--primary-colour);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 8px;
}

.about-name-heading-secondary {
  font-size: 4rem;
  text-align: center;
  color: var(--text-colour-dark);
  letter-spacing: 4px;
  /* padding-top: 4rem; */
}

.about-name-heading-secondary span {
  color: var(--primary-colour);
  font-size: 6rem;
}

.about-name-text {
  color: var(--text-colour-dark);
  font-size: 2.2rem;
  padding: 4rem 0;
  width: 70%;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.about-name-text-container {
  padding-top: 8rem;
}

.about-description {
  margin-top: -2px;
  background-color: var(--primary-colour);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 60vh);
  padding: 6.4rem 0;
  align-items: center;
}

.about-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-text {
  color: var(--text-colour-light);
  padding-left: 4rem;
  padding-right: 5.6rem;
}

.about-text-heading {
  font-size: 4.8rem;
  font-weight: 500;
}

.about-text-body {
  padding-top: 3rem;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.7;
}

.about-contact {
  background-color: var(--text-colour-light);
  padding: 12rem 8rem;
}

.contact-img {
  width: 60%;
  display: block;
  margin: 0 auto;
  outline: 6px solid #111;
}

.address-grid {
  padding-top: 10.8rem;
  display: grid;
  grid-template-columns: 20rem 1fr;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 4.8rem;
  column-gap: 2.4rem;
}

.contact-text {
  font-size: 2.4rem;
  font-weight: 400;
}

.contact-email {
  padding-top: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.email-icon {
  height: 5rem;
  width: 5rem;
  color: var(--primary-colour);
}

.contact-email-text {
  font-size: 2.2rem;
  color: #0064b0;
  text-decoration: underline;
}

.contact-email-text:hover,
.contact-email-text:active {
  color: var(--primary-colour);
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: var(--text-colour-light);
}

.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/* project page */

/* testimonials */
.testimonials {
  background-color: var(--text-colour-light);
  padding-bottom: 6.4rem;
}

.testimonials-h2 {
  color: var(--primary-colour);
  text-transform: uppercase;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  padding-top: 6.4rem;
}

.testimonials-h3 {
  text-align: center;
  padding-top: 2rem;
  color: var(--primary-colour);
  font-size: 3.2rem;
  font-weight: 600;
}

.ttmn-container {
  display: flex;
  gap: 6rem;
  /* padding: 8rem 12rem; */
  padding: 8rem 24rem;
  justify-content: center;

  flex-direction: column;
}

.ttmn-item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background-color: var(--primary-colour);
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  /* flex-basis: 40rem; */
}

.ttmn-img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
}

.ttmn-text {
  color: var(--text-colour-light);
  width: 85%;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.6;
  text-align: center;
  /* flex-basis: 13.8rem; */
}

.ttmn-text span {
  font-weight: 700;
}

.ttmn-name {
  color: var(--text-colour-light);
  /* padding-top: 3.2rem; */
  font-size: 1.6rem;
  font-weight: 400;
}

.ttmn-name br {
  display: none;
}

.qr-code-heading {
  color: var(--text-colour-dark);
  font-size: 2.8rem;
  font-weight: 500;
  /* padding-top: 6.4rem; */
  text-align: center;
  padding-bottom: 6.4rem;
  line-height: 1.4;
}

.qr-code-heading br {
  display: none;
}

.qr-code-img {
  display: block;
  height: 25rem;
  width: 25rem;
  margin: 0 auto;
}

/* past projects */
.past-projects {
  padding: 8rem 0;
  background-color: var(--text-colour-dark);
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 40rem);
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
}

.pp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);

  transition: all 0.5s;
}

.p-item {
  /* overflow: hidden; */
  position: relative;
}

.pp-img:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.p-item:first-child {
  grid-column: 1 / span 5;
  grid-row: 1/2;
}

.p-item:nth-child(2) {
  grid-column: 6 / span 3;
  grid-row: 1/2;
}

.p-item:nth-child(3) {
  grid-column: 1 / span 3;
  grid-row: 2/3;
}

.p-item:nth-child(4) {
  grid-column: 4 / span 5;
  grid-row: 2/3;
}

.p-item:nth-child(5) {
  grid-column: 1 / span 5;
  grid-row: 3/4;
}

.p-item:nth-child(6) {
  grid-column: 6 / span 3;
  grid-row: 3/4;
}

.p-item:nth-child(7) {
  grid-column: 1 / span 3;
  grid-row: 4/5;
}

.p-item:nth-child(8) {
  grid-column: 4 / span 5;
  grid-row: 4/5;
}

.pp-text {
  color: var(--text-colour-light);
  text-shadow: 0.5px 2px 3px rgba(00, 00, 00, 0.8);
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}
