/*
Theme Name: LKYSPP - PCIR PCPPA
Author: Nick Teo
Author URI: https://www.linkedin.com/in/nickteojs/
Description: Theme for LKYSPP - PCIR PCPPA Landing Page
Version: 1.3
Date: 10 Apr 2025
*/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

.button {
  border: none;
  cursor: pointer;
  border-radius: 1.5rem;
  padding: 0.6rem 1.4rem;
  font-weight: 900;
  font-size: 0.75rem;
  transition: 0.25s all ease-in-out;
}
.button.light {
  border: 2px solid #8D0024;
  color: #8D0024;
  background-color: white;
}
.button.dark {
  color: white;
  background-color: #8D0024;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.2));
  }
}
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 800;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
}

.title {
  font-size: 3.5rem;
}

.title-mb {
  margin-bottom: 4rem;
}

.terms {
  margin-top: 5rem;
  font-style: italic;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: #8D0024;
  font-weight: bold;
}
nav .logo {
  width: 150px;
  height: 100%;
}
nav .nav-menu {
  font-size: 1.5rem;
}
nav ul {
  display: none;
}
nav ul li {
  font-weight: 800;
  transition: 0.25s all ease-in-out;
  display: inline-block;
}
nav ul li a {
  position: relative;
  color: #8D0024;
}
nav ul li a:visited {
  color: #8D0024 !important;
}
nav ul li a:after {
  bottom: -8px;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  background: #8D0024;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0%;
}
nav ul li a:hover::after {
  width: 80%;
  left: 10%;
}

#mobile-content {
  overflow: hidden;
  max-height: 0px;
  transition: 0.3s all ease-in-out;
  color: white;
  background-color: #8D0024;
}
#mobile-content a {
  display: block;
  color: white;
}
#mobile-content a:visited {
  color: white !important;
}
#mobile-content a .mobile-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0.5rem 0;
  font-weight: 800;
  font-size: 0.875rem;
  border-bottom: 1px solid white;
}

#promotion-message {
  display: none;
  background-color: #8D0024;
  padding: 1rem 2rem;
  color: white;
}

#hero {
  width: 100%;
  height: 1400px;
  background-image: url("./images/lkyspplandingpage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 50%;
}
#hero .container {
  display: flex;
  flex-direction: column;
}
#hero #hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
  color: white;
}
#hero #hero-copy h1 {
  font-size: 1.25rem;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  font-weight: 900;
}
#hero #hero-form {
  margin: 0 auto 3rem auto;
  background-color: #8D0024;
  max-width: 80%;
  display: flex;
  padding-bottom: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 800;
}
#hero #hero-form #form-selector {
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}
#hero #hero-form #form-selector div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: white;
  color: #8D0024;
}
#hero #hero-form #form-selector div.active {
  background-color: #8D0024;
  color: white;
  filter: drop-shadow(-3px 3px 7px rgba(0, 0, 0, 0.2));
}
#hero #hero-form #application {
  max-width: 80%;
  text-align: center;
  display: none;
}
#hero #hero-form #application.active {
  display: block;
}
#hero #hero-form #application .loading {
  display: none;
}
#hero #hero-form #application .loading.active {
  display: block;
  margin: 0 auto;
}
#hero #hero-form #application .formResult {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
#hero #hero-form #application input {
  width: 100%;
  background-color: #8D0024;
  border: none;
  border-bottom: 2px solid white;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  outline: none;
  color: white;
  letter-spacing: 0.05rem;
  border-radius: 0;
}
#hero #hero-form #application input::-moz-placeholder {
  font-weight: 800;
  color: white;
}
#hero #hero-form #application input::placeholder {
  font-weight: 800;
  color: white;
}
#hero #hero-form #application input::-webkit-outer-spin-button, #hero #hero-form #application input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#hero #hero-form #application input[type=number] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
#hero #hero-form #application button {
  font-weight: 800;
  border: 2px solid white;
  font-size: 0.7rem;
}
#hero #class-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#hero #class-details .detail-card {
  filter: drop-shadow(0px 8px 7px rgba(0, 0, 0, 0.2));
  color: #8D0024;
  width: 200px;
  text-align: center;
  background-color: white;
  margin: 1rem 2.5rem;
  padding: 1rem;
  border-bottom: 10px solid #8D0024;
}
#hero #class-details .detail-card p:first-of-type {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

#overview {
  padding: 1rem 0;
  height: auto;
  color: #8D0024;
}
#overview .container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}
#overview .container .title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
#overview .container .programme-card {
  background-color: rgb(244, 244, 244);
  padding: 1rem;
  filter: drop-shadow(0px 8px 7px rgba(0, 0, 0, 0.1));
  max-width: 85%;
}
#overview .container .programme-card:not(:last-of-type) {
  margin-bottom: 3rem;
}
#overview .container .programme-card #programme-apply-btn {
  margin: 1.5rem auto 1rem auto;
  text-align: center;
}
#overview .container .programme-card #programme-apply-btn a {
  text-decoration: none;
}
#overview .container .programme-card .programme-card-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#overview .container .programme-card .programme-card-top .programme-deets {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#overview .container .programme-card .programme-card-top .programme-deets button {
  width: -moz-max-content;
  width: max-content;
}
#overview .container .programme-card .programme-card-top .programme-banner {
  order: 0;
  background-position-y: 10%;
  background-image: url("./images/pcir-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
}
#overview .container .programme-card .programme-card-top .programme-banner.pcppa {
  background-image: url("./images/pcppa-banner.jpg");
  background-position-y: 25%;
}
#overview .container .programme-card .programme-bottom {
  margin-top: 2rem;
  max-height: 0px;
  margin-top: 0;
  overflow: hidden;
  transition: 0.25s ease-in-out all;
}
#overview .container .programme-card .programme-bottom h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
#overview .container .programme-card .programme-bottom ol li {
  list-style-type: "- ";
  margin-left: 10px;
  margin-bottom: 5px;
}
#overview .container .programme-card .programme-bottom a {
  color: #8D0024;
  text-decoration: underline;
  width: -moz-max-content;
  width: max-content;
}
#overview .container .programme-card .programme-bottom a:visited {
  color: #8D0024 !important;
}
#overview .container .programme-card .programme-bottom.revealed {
  max-height: 2140px;
  margin-top: 1.5rem;
}
#overview .container .programme-card .programme-bottom .programme-button-selectors {
  margin-block: 1rem;
}
#overview .container .programme-card .programme-bottom .programme-button-selectors button {
  padding: 0.6rem 2rem;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner {
  background-image: url("./images/pcir-banner-small.jpg");
  background-position-y: 10%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner.pcir-banner-2 {
  background-image: url("./images/pcir-banner-2.jpg");
  background-position-y: 50%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner.pcir-banner-3 {
  background-image: url("./images/pcir-banner-3.jpg");
  background-position-y: 40%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa {
  background-image: url("./images/pcppa-banner-small.jpg");
  background-position-y: 25%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa-banner-2 {
  background-image: url("./images/pcppa-banner-2.jpg");
  background-position-y: 13%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa-banner-3 {
  background-image: url("./images/pcppa-banner-3.jpg");
  background-position-y: 44%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner .programme-bottom-banner-overlay {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #8D0024;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#overview .container .programme-card .programme-bottom .programme-bottom-banner h2 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  text-align: center;
  max-width: 80%;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col {
  display: flex;
  flex-direction: column;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-date-desc h3 {
  font-weight: normal;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-date-desc .programme-deadline {
  display: block;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table table {
  border-collapse: collapse;
  font-size: 0.65rem;
  text-align: center;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table #price-notes {
  font-size: 0.75rem;
  margin-block: 1rem;
  font-style: italic;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table .table-price {
  font-weight: 900;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table th, #overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table td {
  padding: 0.375rem;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table th:not(:first-of-type) {
  border: 1px solid #8D0024;
}
#overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table td {
  border: 1px solid #8D0024;
}

#enroll {
  background-image: url("./images/enrollbanner.jpg");
  background-repeat: no-repeat;
  background-position: 0% 65%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: white;
}
#enroll h1 {
  font-size: 2rem;
  font-weight: 900;
}
#enroll p {
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}
#enroll button {
  font-size: 0.5rem;
  border: none;
}

#programme-information {
  padding: 4rem 0;
  color: #8D0024;
}
#programme-information .container h1 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-weight: 900;
}
#programme-information .container #prog-info-cards {
  display: flex;
  flex-direction: column;
  text-align: center;
}
#programme-information .container #prog-info-cards .prog-col {
  width: 100%;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card {
  flex-direction: column;
  margin: 0 auto 2.5rem auto;
  max-width: 80%;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card img {
  width: 75px;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card h2 {
  margin-bottom: 0.5rem;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card p {
  margin-bottom: 0.5rem;
}

#faq {
  color: #8D0024;
  padding: 6rem 0 0 0;
}
#faq .container h1 {
  font-weight: 800;
}
#faq .container #accordion .accordion-item {
  display: grid;
  background-color: #8D0024;
  padding: 1rem;
  color: white;
  cursor: pointer;
  margin-bottom: 1rem;
  grid-template-columns: 0.99fr 0.01fr;
  align-items: center;
}
#faq .container #accordion .accordion-item p {
  max-width: 90%;
}
#faq .container #accordion .accordion-item .plus {
  width: 12px;
  justify-self: flex-end;
  font-size: 1.25rem;
}
#faq .container #accordion .accordion-content {
  width: 80%;
  margin: -1rem auto 1rem auto;
  overflow: hidden;
  max-height: 0px;
  transition: 0.3s all ease-in-out;
  border: 2px solid white;
  border-top: 0;
}
#faq .container #accordion .accordion-content p {
  margin: 0 2rem;
  margin-bottom: 1rem;
}
#faq .container #accordion .accordion-content p a {
  text-decoration: underline;
  color: #8D0024;
}
#faq .container #accordion .accordion-content p a:visited {
  color: #8D0024 !important;
}
#faq .container #accordion .accordion-content.active {
  padding: 2rem 0;
  border: 2px solid #8D0024;
  border-top: 0;
}
#faq .container #last-cta {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 6rem 0;
  text-align: center;
}
#faq .container #last-cta .last-cta-col {
  width: 100%;
}
#faq .container #last-cta h1, #faq .container #last-cta p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#faq .container #last-cta h1 {
  font-weight: 900;
}
#faq .container #last-cta h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
#faq .container #last-cta #last-cta-deadline {
  flex-direction: column;
  justify-content: space-between;
}
#faq .container #last-cta #last-cta-deadline p {
  font-size: 0.75rem;
  font-style: italic;
}

#tc .container {
  max-width: 80%;
  font-style: italic;
  margin: 2rem auto;
  color: #8D0024;
}
#tc .container p {
  font-size: 0.6rem;
}
#tc .container p a {
  text-decoration: underline;
  color: #8D0024;
}
#tc .container p a:visited {
  color: #8D0024 !important;
}

#footer {
  background-color: #8D0024;
  color: white;
  padding: 2rem 0;
}
#footer .container #btt {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 4rem;
}
#footer .container #btt img {
  color: white;
  width: 30px;
  cursor: pointer;
}
#footer .container ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  font-weight: 800;
}
#footer .container ul li:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
#footer .container ul a {
  color: white;
}
#footer .container ul a:visited {
  color: white !important;
}
#footer .container #footer-socials {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 3rem;
}
#footer .container #footer-socials div {
  margin-bottom: 2rem;
}
#footer .container #footer-socials .logo {
  order: 1;
}
#footer .container #footer-socials .logo img {
  width: 175px;
}
#footer .container #footer-socials #copyright {
  order: 3;
  max-width: 255px;
  margin: 0 auto;
  font-size: 0.7rem;
}
#footer .container #footer-socials #socials {
  display: flex;
  justify-content: center;
  order: 2;
}
#footer .container #footer-socials #socials a:not(:last-of-type) {
  margin-right: 1rem;
}
#footer .container #footer-socials #socials img {
  width: 25px;
}

@media (min-width: 368px) {
  #hero #hero-form #form-selector div p {
    max-width: 50%;
  }
}
@media (min-width: 425px) {
  #hero #hero-copy {
    margin-top: 4rem;
    color: white;
  }
  #hero #hero-copy h1 {
    font-size: 1.25rem;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
  }
  #hero #hero-form #form-selector div p {
    max-width: 100%;
  }
  #hero #class-details .detail-card {
    width: 300px;
  }
  #enroll h1 {
    font-size: 2.5rem;
  }
  #faq .container #accordion {
    max-width: 80%;
    margin: 0 auto;
  }
  #faq .container #accordion .accordion-item p {
    max-width: 95%;
  }
  #faq .container #last-cta {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 500px) {
  #footer .container #footer-socials #copyright {
    max-width: 100%;
  }
}
@media (min-width: 600px) {
  #hero #hero-copy h1 {
    font-size: 1.75rem;
    max-width: 80%;
  }
  #faq .container #accordion .accordion-item p {
    max-width: 95%;
  }
}
@media (min-width: 768px) {
  #hero {
    height: 1400px;
  }
  #overview .container .programme-card .programme-card-top .programme-banner {
    height: 150px;
  }
  #overview .container .programme-card .programme-bottom.revealed {
    max-height: 1600px;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner {
    height: 150px;
  }
  #faq .container #accordion .accordion-item p {
    max-width: 98%;
  }
  #faq .container #last-cta {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  nav {
    padding: 1rem 3rem;
  }
  #hero {
    background-size: 150%;
    background-position: 60% 100%;
    height: 750px;
  }
  #hero .container {
    display: grid;
    height: 100%;
    justify-content: center;
    align-items: center;
    grid-template-columns: 0.5fr 0.5fr;
  }
  #hero .container #hero-copy {
    margin-top: 5rem;
  }
  #hero .container #hero-copy h1 {
    font-size: 2.5rem;
    text-align: start;
  }
  #hero .container #hero-form {
    max-width: 90%;
    padding-bottom: 1rem;
    margin-top: 5rem;
  }
  #hero .container #hero-form #form-selector {
    font-size: 0.875rem;
  }
  #hero .container #class-details {
    flex-direction: row;
    position: relative;
    grid-column: 1/3;
    justify-self: center;
    top: 130px;
  }
  #hero .container #class-details .detail-card {
    width: 200px;
    height: 130px;
    margin: 0 2.5rem;
  }
  #overview {
    padding: 6rem 0 3rem 0;
  }
  #overview .container {
    flex-direction: column;
    margin-top: 6rem;
    align-items: start;
    max-width: 80%;
  }
  #overview .container .programme-card {
    max-width: 100%;
  }
  #overview .container .programme-card .programme-card-top .programme-banner {
    height: 175px;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-col .programme-pricing-table table {
    font-size: 0.75rem;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner {
    background-position-y: 50%;
    height: 175px;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcir-banner-2 {
    background-position-y: 10%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcir-banner-3 {
    background-position-y: 72.5%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa {
    background-position-y: 65%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa-banner-2 {
    background-position-y: 36%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcppa-banner-3 {
    background-position-y: 75%;
  }
  #enroll {
    flex-direction: column;
    height: 400px;
  }
  #enroll h1 {
    font-size: 4rem;
  }
  #enroll p {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
  #enroll button {
    font-size: 0.75rem;
  }
  #programme-information {
    padding: 6rem;
  }
  #programme-information .container h1 {
    font-size: 3.5rem;
  }
  #programme-information .container #prog-info-cards {
    flex-direction: row;
    text-align: start;
    gap: 3rem;
  }
  #programme-information .container #prog-info-cards .prog-col .prog-info-card {
    flex-direction: row;
    margin-bottom: 2.275rem;
    max-width: 100%;
  }
  #programme-information .container #prog-info-cards .prog-col .prog-info-card img {
    width: 100px;
    margin-right: 1.5rem;
  }
  #faq .container #accordion .accordion-item p {
    max-width: 100%;
  }
  #faq .container #last-cta {
    max-width: 80%;
    text-align: start;
    flex-direction: row;
  }
  #faq .container #last-cta .last-cta-col {
    width: 50%;
  }
  #faq .container #last-cta h1, #faq .container #last-cta h2 {
    margin-bottom: 1rem;
  }
  #faq .container #last-cta h1 {
    font-size: 3rem;
    max-width: 80%;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  #faq .container #last-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0;
  }
  #faq .container #last-cta #last-cta-deadline {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    gap: 1rem;
  }
  #faq .container #last-cta #last-cta-deadline p {
    margin-bottom: 0;
  }
  #faq .container #last-cta #last-cta-deadline .button {
    white-space: nowrap;
  }
  #footer {
    padding: 3rem 0;
  }
  #footer .container ul {
    flex-direction: row;
    margin-bottom: 3rem;
  }
  #footer .container ul li:not(:last-of-type) {
    margin-right: 2.5rem;
    margin-bottom: 0;
  }
  #footer .container #footer-socials {
    max-width: 80%;
    margin: 4rem auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-end;
    justify-content: space-between;
  }
  #footer .container #footer-socials div {
    margin-bottom: 0;
  }
  #footer .container #footer-socials .logo {
    justify-self: flex-start;
  }
  #footer .container #footer-socials #copyright {
    order: 2;
    font-size: 0.8rem;
    width: 290px;
  }
  #footer .container #footer-socials #socials {
    justify-self: flex-end;
    order: 3;
  }
}
@media (min-width: 1100px) {
  nav {
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: #8D0024;
    font-weight: bold;
  }
  nav .logo {
    width: 200px;
    height: 100%;
  }
  nav .nav-menu {
    display: none;
  }
  nav ul {
    display: flex;
  }
  nav ul li {
    font-size: 0.875rem;
    text-align: center;
  }
  nav ul li:not(:last-child) {
    margin-right: 1rem;
  }
  #promotion-message {
    display: block;
  }
  #promotion-message #promotion-message-copy {
    max-width: 1366px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  #promotion-message #promotion-message-copy #promotion-close {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #promotion-message #promotion-message-copy #promotion-close:hover {
    cursor: pointer;
  }
  #hero #hero-copy h1 {
    max-width: 100%;
    margin-left: 5rem;
  }
}
@media (min-width: 1280px) {
  #hero {
    background-size: 175%;
    background-position: 60% 100%;
  }
  #overview .container .title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  #overview .container .programme-card {
    padding: 2rem;
  }
  #overview .container .programme-card .programme-card-top {
    flex-direction: row;
  }
  #overview .container .programme-card .programme-card-top .programme-deets {
    order: 0;
    width: 30%;
  }
  #overview .container .programme-card .programme-card-top .programme-banner {
    order: 1;
    width: 70%;
    height: auto;
    max-height: 300px;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner h2 {
    font-size: 1.75rem;
    max-width: 100%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-banner.pcir-banner-3 {
    background-position: 58% 85%;
    background-size: 140%;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-col {
    flex-direction: row;
    gap: 2rem;
  }
  #overview .container .programme-card .programme-bottom .programme-bottom-col .programme-bottom-col1, #overview .container .programme-card .programme-bottom .programme-bottom-col .programme-bottom-col2 {
    width: 50%;
    margin-top: 1rem;
  }
  #faq .container #last-cta h1 {
    font-size: 4rem;
  }
  #faq .container #last-cta h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1366px) {
  nav {
    max-width: 1366px;
    margin: 0 auto;
  }
  nav ul li:not(:last-child) {
    margin-right: 2rem;
  }
  #hero .container {
    max-width: 90%;
  }
  #hero .container #hero-copy h1 {
    max-width: 100%;
    margin-left: 0rem;
    font-size: 2.75rem;
  }
  #hero .container #class-details .detail-card {
    width: 250px;
  }
  #overview {
    padding: 8rem 0;
  }
  #overview .container {
    max-width: 80%;
  }
  #footer .container #footer-socials {
    grid-template-columns: 0.3fr 0.4fr 0.3fr;
  }
  #footer .container #footer-socials #copyright {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (min-width: 1600px) {
  #hero .container {
    max-width: 1336px;
  }
  #overview .container {
    max-width: 1400px;
  }
  #footer .container #footer-socials {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */