:root {
  /* --primary-gradient: #f1c40f; */
  /* --primary-gradient: #f4d03f; */
  --primary-colour: #f4d03f;

  /* --primary-gradient: linear-gradient(to right, #b6923c, #d3b45d); */

  /* --primary-gradient: linear-gradient(to right, #f7c52c, #e2a523); */

  --primary-gradient: linear-gradient(
    to right,
    #f7c52c 0%,
    #ffe066 50%,
    #e2a523 100%
  );

  /* --primary-gradient: linear-gradient(
    to right,
    #b6923c 0%,
    #ffe066 50%,
    #d3b45d 100%
  ); */
  --background-color-white: #fefefe;
  /* --text-colour-dark: #17202a; */
  --text-colour-dark: #000;
  --text-colour-white: #fff;
  /* --text-colour-white: #7d6608; */
  --btn-hover: #b7950b;
}

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

  /* Because we want header to be sticky later */
  height: 8rem;
  /* color: var(--primary-gradient-blue); */
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  height: 7.2rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  /* gap: 10.8rem; */
  /* gap: 12rem; */
  /* gap: 14rem; */
  gap: 8rem;
  /* padding-right: 6rem; */
}

.main-nav-link:link,
.main-nav-link:visited,
.symbol {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-colour-dark);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  /* 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: var(--primary-gradient); */
}

.thai-font {
  font-family: "Noto Sans Thai", sans-serif;
}

#thai-font {
  font-family: "Noto Sans Thai", sans-serif;
}

#thai-language-link {
  font-size: 1.6rem;
}

.current-page {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--text-colour-dark);
  font-weight: 800;
  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;
}

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

  display: none;
}

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

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

/* index - main - video */
.index-main {
  height: calc(100vh - 8rem);
  width: 100vw;
  background-color: var(--text-colour-white);

  position: sticky;
  top: 8rem;
  z-index: -1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  /* opacity: 0.15; */
  overflow: hidden;
}

.bg-video-content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.index-primary-heading {
  text-align: center;
  /* text-transform: capitalize; */
  line-height: 1.5;
  position: absolute;
  /* bottom: calc(50% - 8rem); */
  /* bottom: 20%; */
  left: 50%;

  bottom: 50%;
  /* transform: translateX(-50%); */
  transform: translate(-50%, 50%);

  font-size: 6.4rem;
  /* font-weight: 500; */
  font-weight: 300;
  color: var(--text-colour-white);
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;

  /* display: none; */
}

/* .index-primary-heading br {
  display: none;
} */

.index-primary-heading-2 {
  display: none;
  text-align: center;
  /* text-transform: capitalize; */
  line-height: 1.5;
  position: absolute;
  /* bottom: 35%; */
  /* bottom: 50%; */
  bottom: 40%;
  left: 50%;
  /* transform: translateX(-50%); */
  /* transform: translate(-50%, 50%); */
  transform: translate(-50%, 15%);
  font-size: 6.4rem;
  /* font-weight: 500; */
  font-weight: 300;
  color: var(--text-colour-white);
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
}

/* .index-primary-heading-2-line-break {
  display: none;
} */

/* .index-primary-heading-2 span {
  font-size: 7.2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  display: block;
  line-height: 3;
} */

/* .text-fade-out {
  animation: 2.5s linear textFadeOut;
} */

.text-inactive {
  display: none;
}

.text-active {
  animation: 2s linear textFadeIn;
  display: block;
}

.break-2 {
  display: none;
}

/* Animation */

/* @keyframes textFadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
} */

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* layer-sliding */

.layer-sliding-container {
  height: calc(100vh - 8rem);
  position: relative;
  position: sticky;
  top: 8rem;
}

.layer-sliding-container picture {
  height: 100%;
  object-fit: cover;
}

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

.layer-sliding-text {
  text-align: center;

  position: absolute;
  /* bottom: 50%; */
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, 0);

  font-size: 6.4rem;
  /* font-weight: 500; */
  font-weight: 400;
  color: var(--text-colour-white);
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
  line-height: 1.5;
  text-transform: capitalize;
}

/* .release-back-span {
  display: none;
} */

.layer-sliding-text p {
  text-transform: capitalize;
}

/* features section */

.features {
  background-color: var(--background-color-white);
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  margin-top: -2px;
}

.primary-heading {
  color: var(--text-colour-dark);
  padding-top: 5.6rem;
  /* font-size: 7.2rem; */
  font-size: 5.6rem;
  font-weight: 300;
  /* letter-spacing: 1px; */
  text-align: center;
  margin-top: -2px;
  /* text-transform: uppercase; */
}

/* .dark-text {
  color: var(--text-colour-dark);
} */

.heading-eng-text {
  font-family: "Nunito Sans", sans-serif;
}

.features-highlights {
  display: flex;
  flex-direction: column;

  align-items: center;
  gap: 9.6rem;
  padding-top: 15rem;
  /* padding-bottom: 12rem; */
}

.features-item {
  /* color: #6b7280; */
  color: #b2babb;
  /* font-size: 6.4rem; */
  font-size: 3.8rem;
  font-weight: 400;
}

.features-item:last-child {
  text-align: center;
  line-height: 1.4;
}

.item-active {
  /* color: #2dd4bf; */
  color: var(--primary-colour);
}

/* features */
.index-features {
  position: relative;
  background-color: var(--background-color-white);
}

.index-feature-img-container {
  /* height: calc(100vh - 8.5rem);
  width: 100vw; */

  position: sticky;
  /* position: absolute; */
  /* top: 85px; */
  top: 80px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 8rem);
  z-index: 0; /* Ensures images are behind text */
  overflow: hidden;
}

.index-feature-img {
  height: 100%;
  width: 100%;
  object-fit: cover;

  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.index-feature-img.active {
  opacity: 1;
  z-index: 1500;
  display: block;
  animation: imgFadeInSlide 1s;
}

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

.index-feature-text-container {
  background: transparent;
  /* height: calc(100vh - 8.5rem); */
  /* height: calc(100vh); */
  /* height: 100vh; */
  width: 100vw;
  position: relative;

  display: flex;
  flex-direction: column;

  padding-left: 12rem;
  /* align-items: center; */
  /* justify-content: flex-start; */
  z-index: 6000;

  color: var(--text-colour-white);
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);
  margin-bottom: calc(100vh - 8.5rem);
}

.index-feature-text-container:last-child {
  margin-bottom: 0;
}

.tertiary-heading {
  font-size: 6.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  z-index: 1000;
  /* height: 8rem; */
  text-transform: capitalize;
}

.index-feature-text {
  /* width: 50%; */
  padding-top: 3rem;
  /* font-size: 2.4rem; */
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 1px;
  /* white-space: nowrap; */
  /* padding-left: 8rem; */
  z-index: 1000;
  /* height: 20rem; */
}

/* .remark-text {
  z-index: 1000;
  padding-top: 6.4rem;
  font-size: 2.4rem;
  font-weight: 300;

} */

/* 3d section */

.introduction-primary-bg-section {
  background-color: var(--background-color-white);
  padding-top: 8rem;
  padding-bottom: 12rem;
}

/* 3D */

.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: 300;
  font-size: 20px;
  transform: skewY(-10deg);
  height: 60px;
  transition: 1s;
  color: var(--text-colour-dark);
}

.about-text-container {
  /* width: 80%; */
  margin: 0 auto;
  padding-top: 6.4rem;
  padding-left: 4.8rem;
  padding-right: 4.8rem;
}

.standard-text {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.centre-text {
  text-align: center;
}

/* z pattern section  */

.z-pattern-4-3-section {
  background: var(--primary-gradient);
  /* border-top: 3px solid var(--primary-gradient); */
  padding-bottom: 3.6rem;
}

.section-heading {
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  /* font-size: 6.4rem; */
  font-size: 4.8rem;
  /* font-weight: 600; */
  color: var(--text-colour-dark);
  padding-top: 8rem;
  text-transform: capitalize;
}

.section-heading-white {
  color: var(--text-colour-white);
}

.white-text {
  color: var(--text-colour-white);
}

.section-sub-heading {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--primary-gradient);
  padding-top: 4.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 1.5;
}

.section-sub-heading-white {
  color: var(--text-colour-white);
}

.introduction-phrase {
  /* font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75; */
  text-align: center;
  padding-top: 3.6rem;
}

.z-pattern-4-3-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  grid-template-rows: repeat(5, 60rem);
  grid-template-rows: auto;

  /* padding: 6.4rem 0; */
  padding-top: 8rem;
  padding-bottom: 8rem;
  align-items: center;
}

.z-pattern-4-3-container picture,
.f-pattern-4-3-container picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.z-pattern-4-3-img,
.f-pattern-4-3-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.z-pattern-4-3-text {
  padding-left: 6rem;
  padding-right: 6rem;
  font-size: 2.8rem;
  /* font-weight: 100; */
  line-height: 1.5;
  font-weight: 200;
  text-transform: capitalize;
  color: var(--text-colour-dark);
}

@keyframes moveFromLeft {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveFromRight {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(0);
  }
}

.move-left {
  animation: moveFromLeft 1.5s ease-out;
  /* animation: moveFromLeft 0.8s ease-out; */
}

.move-right {
  animation: moveFromRight 1.5s ease-out;
  /* animation: moveFromRight 0.8s ease-out; */
}

.right-align {
  justify-self: end;
  /* align-self: end; */
}

.z-pattern-4-3-text-body-right {
  padding-right: 6rem;
}

.btn-container {
  display: flex;
}

.default-btn,
.default-btn:link,
.default-btn:visited {
  display: inline-block;
  text-decoration: none;
  padding: 1.5rem 3rem;
  background-color: var(--background-color-white);
  color: var(--text-colour-dark);
  font-size: 2rem;
  font-weight: 400;

  margin-top: 3rem;
  margin-bottom: 3rem;
  margin: 3rem auto;
  transition: 0.2s;
  border: none;
  /* justify-self: center; */
}

.default-btn:hover,
.default-btn:active {
  cursor: pointer;
  /* color: var(--text-colour-light); */
  text-decoration: underline;
  /* background-color: var(--btn-hover); */
}

/* index-video */
.index-video {
  background-color: var(--background-color-white);
  border-top: 3px solid var(--primary-gradient);
  padding-top: 8rem;
}

.fourth-heading {
  font-size: 4.8rem;
}

.index-video-text-container {
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

.index-video-body-text {
  padding-top: 4.8rem;
  padding-bottom: 6.4rem;
  font-size: 2.4rem;
  line-height: 1.8;
}
.index-experience-video {
  height: calc(100vh - 8rem);
  width: 100%;
  z-index: -1;
  /* opacity: 0.15; */
  overflow: hidden;
}

.index-experience-video-content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Home - Gallery */

.gallery-grid-section {
  margin-top: -2px;
  background: var(--primary-gradient);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.container-gallery-grid {
  padding-top: 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.container-gallery-grid picture {
  /* width: 100%; */
  overflow: hidden;
}

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

  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.5s ease-out;
  transition: transform 12s;
}

.gallery-img-active {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.4);
}

.gallery-img:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.4);
}

.gallery-heading {
  color: var(--text-colour-dark);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.5;
  /* padding-top: 2.4rem; */
  text-align: center;
  text-transform: uppercase;
}

/* footer */

.footer {
  background: var(--primary-gradient);
  border-top: 3px solid var(--text-colour-dark);
}

.footer-container-1 {
  /* display: flex;
  justify-content: space-between; */

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 6rem;
  padding-top: 10rem;
}

.footer-logo {
  /* width: 20rem; */
  /* width: 20rem; */
  width: 25rem;
}

.footer-logo-img {
  /* width: 25rem; */
  width: 100%;
}

.social {
  display: flex;

  gap: 4.2rem;
  align-items: center;
}

.social-icon {
  color: var(--text-colour-dark);
  /* height: 4rem;
  width: 4rem; */
  height: 5rem;
  width: 5rem;
}

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

.footer-social-logo {
  height: 5rem;
  fill: var(--text-colour-dark);
  cursor: pointer;
  width: 5rem;
}

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

.instagram:hover {
  color: #d62976;
}

.tiktok {
  height: 4.5rem;
  width: 4.5rem;
}

.tiktok:hover {
  color: #fe2c55;
}

.footer-contact {
  /* width: 25rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  color: var(--text-colour-dark);
  font-size: 1.8rem;
  font-weight: 200;
}

/* .footer-contact-item {
  width: 28rem;
  display: flex;

  gap: 1.2rem;
} */

/* .footer-text {
  font-size: 1.8rem;
  font-weight: 200;
} */

.footer-sms-text {
  /* font-family: "Inter", sans-serif; */

  color: var(--text-colour-dark);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.5px;
}

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

.footer-qr-container {
  /* width: 25rem; */
  width: 50rem;
  text-align: right;
  /* align-self: center; */
  /* display: flex;
  justify-content: center;

  align-items: center; */
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
}

.footer-qr-img {
  /* width: 20rem; */
  /* width: 60%;
  margin: auto; */
  width: 100%;
  /* margin: auto; */
  /* display: block;
  text-align: left; */
}

.lemon8-footer {
  /* fill: var(--text-colour-dark);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%); */
  width: 5rem;
}

.copyright {
  text-align: center;
  color: var(--text-colour-dark);
  font-size: 1.4rem;
  font-weight: 200;
  padding-top: 6rem;
  padding-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* F-pattern vertical */

.f-pattern-vertical-section {
  background: var(--primary-gradient);
  border-top: 3px solid var(--text-colour-dark);
  padding-bottom: 4.8rem;
}

.f-pattern-grid-vertical-container {
  padding-top: 12rem;
  padding-bottom: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.f-pattern-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80rem;
}

.f-pattern-item-img {
  height: 80rem;
  width: 100%;
  object-fit: cover;
}

.f-pattern-description {
  /* color: var(--text-colour-yellow); */
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
  padding-right: 2rem;
  justify-content: center;
  gap: 2rem;
}

.f-pattern-type-heading {
  font-size: 4rem;
  font-weight: 500;
}

.f-pattern-ul {
  /* color: var(--text-colour-light);
  font-size: 2rem;
  font-weight: 400; */
  line-height: 3;
  display: inline-block;
  text-align: left;
  padding-left: 2rem;
}

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

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

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

  80% {
    transform: translate(0);
  }

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

.heading-page {
  color: var(--text-colour-white);
  /* font-size: 8rem; */
  font-size: 8rem;
  font-weight: 400;
  /* letter-spacing: 5px; */
  background-color: hsla(0, 0%, 7%, 0.5);
  padding: 2rem 4rem;

  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  z-index: 10;
  text-shadow: 1px 1px 1px rgba(00, 00, 00, 0.8);
  text-align: center;

  display: none;
  white-space: nowrap;
}

.text--active {
  display: block;
  animation: heroText 1.5s ease-out;
}

@keyframes heroText {
  0% {
    opacity: 0;
    /* transform: translateX(-200%); */
    transform: translateX(-300%);
  }

  95% {
    transform: translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.contact-section {
  /* background-color: var(--primary-colour); */
  background: var(--primary-gradient);

  margin-top: -2rem;
  padding-top: 12rem;
  padding-bottom: 12rem;

  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.contact-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* color: var(--text-colour-light); */
  color: var(--text-colour-dark);
  /* gap: 3.6rem; */
  gap: 2.4rem;
}

.contact-heading {
  /* text-align: center; */
  /* color: var(--text-colour-light); */
  /* font-family: "Nunito Sans", sans-serif; */

  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-decoration: underline;
}

.contact-text {
  font-size: 2.4rem;
  font-weight: 200;
  text-align: center;
  line-height: 2;
}

.contact-text span {
  color: var(--primary-colour-blue);
  font-size: 2.6rem;
  font-weight: 500;
}

.contact-link-map:link,
.contact-link-map:visited {
  display: inline-block;
  color: var(--text-colour-light);
  font-weight: 200;
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-link-map:hover,
.contact-link-map:active {
  text-decoration: underline;
}

.contact-qr-code {
  width: 15rem;
}

.contact-tel,
.contact-email,
.contact-line {
  color: var(--text-colour-light);
  font-size: 2.4rem;
  font-weight: 200;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.contact-sms-text {
  /* font-family: "Inter", sans-serif; */

  color: var(--text-colour-light);
  text-decoration: none;
  /* font-size: 2.4rem;
  font-weight: 200; */
  letter-spacing: 0.5px;
}

.contact-sms-text:hover {
  cursor: pointer;
  text-decoration: underline;
}

.tel-email-container {
  display: flex;

  justify-content: space-evenly;
}

.contact-social-photos-container {
  display: flex;
  gap: 8rem;
  padding-top: 3.6rem;
}

.social-photo {
  width: 10rem;
  border-radius: 8px;
}

.contact-qr-container {
  padding-top: 8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4rem;
}

.contact-qr-img {
  width: 20rem;
}

.contact-break-special-1 {
  display: none;
}

/* about - page  */

.text-content-section {
  margin-top: -5px;
  background: var(--primary-gradient);
}

.about-text-1 {
  width: 85%;
  margin: 0 auto;
  padding-top: 4rem;
}

.about {
  padding-top: 12rem;
  padding-bottom: 30rem;
  background: var(--primary-gradient);
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.about-item {
  /* height: 40rem; */
  position: relative;
}

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

.about-text {
  /* background-color: var(--primary-gradient); */
  background: var(--primary-gradient);
  border: 0.2rem solid;
  width: 45%;
  position: absolute;
  bottom: 0%;
  right: 50%;
  transform: translate(50%, 50%);
}

/* .left-side {
  left: 5%;
} */

/* .about-text-heading {
  color: var(--text-colour-yellow);
  font-family: "Cormorant", serif;
  font-size: 4rem;
  font-weight: 200;
  padding-top: 4rem;

  text-align: center;
} */

.about-text-body {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.5;
  padding: 3rem 4rem;
  text-align: center;
}

/* Transition Text */
.animated-img {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: -100;
}

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

.transition-img-black {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -50;
}

/* .transition-text {
  font-family: "Cormorant", sans-serif;
  text-transform: uppercase;
  font-size: 6.4rem;
  font-weight: 300;
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-colour-dark);
  z-index: 100;
  white-space: nowrap;
} */

/* Transparent */
.transparent {
  height: 100vh;
  width: 100vw;
}

.text-paragraph-section {
  background: var(--primary-gradient);
}

.paragraph-ul-container {
  text-align: center;
  /* text-align: center; */
  list-style: inside;
  padding-top: 3.6rem;

  padding-bottom: 3.6rem;
}

.paragraph-ul {
  /* color: var(--text-colour-light);
  font-size: 2rem;
  font-weight: 400; */
  line-height: 3;
  display: inline-block;
  text-align: left;
  padding-left: 2rem;
}

.bottom-phrase {
  /* font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75; */
  text-align: center;
  padding-top: 0;
}

.border-top {
  border-top: 3px solid var(--text-colour-dark);
}

/* news */
.secondary-heading {
  /* font-family: "Cormorant", serif; */
  color: var(--text-colour-dark);
  padding-top: 6rem;
  /* padding-bottom: 6rem; */
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: -2px;
}

/* blog page */
.blog-main-section {
  background: var(--primary-gradient);
}

.blog {
  /* background-color: var(--text-colour-dark); */
}

.blog-list {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8rem;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.blog-item {
  width: 80%;
  /* width: 90%; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-item picture {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  overflow: hidden;
}

.blog-description {
  /* background-color: var(--primary-colour); */
  background-color: var(--background-color-white);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  padding-left: 5rem;
  justify-content: center;
  gap: 3rem;
}

.blog-text {
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1.4;
}

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

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

.blog-section-heading {
  /* font-family: "Cormorant", serif; */
  color: var(--text-colour-dark);
  padding-top: 6rem;
  /* padding-bottom: 6rem; */
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: -2px;
  text-decoration: underline;
}

/* program */

.program-section {
  /* padding-top: 8rem; */
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 8rem;
  padding-top: 4rem;
  border-top: 3px solid var(--text-colour-dark);
}

/* .program-section:nth-child(3),
.program-section:nth-child(4) {
} */

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.6rem;
  row-gap: 12rem;
  padding-top: 6.4rem;
}

.program-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  overflow: hidden;
}

.program-item picture {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.program-img {
  width: 100%;
  transition: transform 0.5s;
}

.program-img:hover {
  transform: scale(1.05);
}

.program-text {
  text-align: center;
  font-size: 2.4rem;
}

.program-selection-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  text-align: center;
  padding-top: 12rem;
  padding-bottom: 12rem;

  width: fit-content; /* shrink-wrap */
  margin: 0 auto;
}

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

  transition: all 0.3s;
}

.program-selection-link:hover,
.program-selection-link:active {
  text-decoration: underline;
  /* color: var(--primary-gradient); */
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
}

/* pdf modal */
/* .pdf-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.pdf-modal-content {
  position: relative;
  margin: 0;
  width: 100%;
  height: calc(100vh - 80px);
  top: 80px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

.pdf-modal-content iframe {
  width: 100%;
  height: 100vh;
}

.pdf-close {
  position: fixed;

  top: 150px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 12px;
  border-radius: 50%;
} */

.pdf-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 80px; /* offset for navbar height */
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(0, 0, 0, 0.85);
}

/* PDF iframe fills modal */
.pdf-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* Close button floating outside PDF */
.pdf-close {
  position: fixed;
  /* top: 90px;  */
  top: 150px; /* navbar (80px) + spacing */
  right: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 50%;
}

.credit-text {
  text-align: center;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

#no-border-top {
  border: none;
}
