* {
  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: 0% 50%;
}
#hero .container {
  display: flex;
  flex-direction: column;
}
#hero #hero-copy {
  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 #brochure-selector, #hero #hero-form #form-selector #application-selector {
  cursor: pointer;
  transition: 0.25s all ease-in-out;
}
#hero #hero-form #form-selector #brochure-selector:hover, #hero #hero-form #form-selector #application-selector:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.2));
}
#hero #hero-form #form-selector div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  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 #brochure, #hero #hero-form #application {
  max-width: 80%;
  text-align: center;
  display: none;
}
#hero #hero-form #brochure.active, #hero #hero-form #application.active {
  display: block;
}
#hero #hero-form #brochure .loading, #hero #hero-form #application .loading {
  display: none;
}
#hero #hero-form #brochure .loading.active, #hero #hero-form #application .loading.active {
  display: block;
  margin: 0 auto;
}
#hero #hero-form #brochure .formResult, #hero #hero-form #application .formResult {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
#hero #hero-form #brochure input, #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 #brochure input::-moz-placeholder, #hero #hero-form #application input::-moz-placeholder {
  font-weight: 800;
  color: white;
}
#hero #hero-form #brochure input::placeholder, #hero #hero-form #application input::placeholder {
  font-weight: 800;
  color: white;
}
#hero #hero-form #brochure input::-webkit-outer-spin-button, #hero #hero-form #brochure input::-webkit-inner-spin-button, #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 #brochure input[type=number], #hero #hero-form #application input[type=number] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
#hero #hero-form #brochure button, #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;
  max-width: 80%;
}
#overview .container #overview-image-container {
  text-align: center;
  margin-bottom: 2rem;
}
#overview .container #overview-image-container #overview-image {
  width: 100%;
  height: 100%;
}
#overview .container #overview-copy {
  text-align: center;
}
#overview .container #overview-copy h1, #overview .container #overview-copy p {
  margin: 0 auto 1rem auto;
  text-align: start;
}
#overview .container #overview-copy h1 {
  font-size: 1.25rem;
  font-weight: 900;
}
#overview .container #overview-copy p {
  font-size: 0.875rem;
}
#overview .container #overview-copy a {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

#promotion {
  width: 100%;
  background-color: #8D0024;
  color: white;
}
#promotion .container {
  padding: 4rem 0;
}
#promotion .promotion-copy {
  flex-direction: column;
  justify-content: space-between;
  margin: 3rem auto;
  text-align: center;
  max-width: 80%;
}
#promotion .promotion-copy .promotion-title, #promotion .promotion-copy .promotion-description {
  width: auto;
}
#promotion .promotion-copy .promotion-title h1 {
  font-size: 2rem;
  font-weight: 900;
}
#promotion .promotion-copy .promotion-description h1 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
#promotion .promotion-copy .promotion-description p {
  font-size: 0.875rem;
  margin-top: 1rem;
}
#promotion .promotion-copy .promotion-body {
  max-width: 90%;
  margin: 0 auto;
}
#promotion .terms p {
  font-size: 0.6rem;
}

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

#outcomes {
  color: #8D0024;
  padding: 6rem 0;
}
#outcomes .container {
  flex-direction: column;
  text-align: center;
}
#outcomes .container h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 900;
}
#outcomes .container #outcomes-cards {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
}
#outcomes .container #outcomes-cards .outcome-card {
  flex-direction: column;
}
#outcomes .container #outcomes-cards .outcome-card img {
  width: 50px;
  margin-right: 1rem;
}
#outcomes .container #outcomes-cards .outcome-card h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#outcomes .container #outcomes-cards .outcome-card p {
  font-size: 0.875rem;
}
#outcomes .container #outcomes-cards div:not(:last-of-type) {
  margin-bottom: 2rem;
}

#attendees {
  padding: 6rem 1.25rem;
  background-color: #8D0024;
  color: white;
  text-align: center;
}
#attendees .container h1 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 900;
}
#attendees .container #attendee-copy {
  max-width: 80%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#attendees .container #attendee-copy .attendee-card {
  max-width: 350px;
}
#attendees .container #attendee-copy .attendee-card img {
  width: 75px;
  margin-bottom: 1rem;
}
#attendees .container #attendee-copy .attendee-card p {
  font-size: 0.875rem;
}
#attendees .container #attendee-copy div:first-of-type {
  margin-bottom: 5rem;
}

#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: 50px;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card h2 {
  margin-bottom: 1rem;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card p {
  margin-bottom: 0.5rem;
}
#programme-information .container #prog-info-cards .prog-col .prog-info-card li {
  list-style-type: decimal;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
#programme-information .container #programme-information-cta {
  margin-top: 3rem;
}
#programme-information .container #programme-information-cta a {
  margin-bottom: 1rem;
}
#programme-information .container #programme-information-cta p {
  font-style: italic;
  font-size: 0.75rem;
}

#testimonials {
  padding: 4rem 0;
  background-color: #8D0024;
  color: white;
}
#testimonials .container h1 {
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-weight: 900;
}
#testimonials .container #scroll-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#testimonials .container #scroll-box div:not(:last-of-type) {
  margin-bottom: 3rem;
}
#testimonials .container #scroll-box .testimonial-card {
  max-width: 80%;
  background-color: white;
  color: #8D0024;
  text-align: center;
}
#testimonials .container #scroll-box .testimonial-card img {
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
  max-width: 80%;
  margin: 1.75rem auto;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy p {
  margin: 1.75rem;
  font-size: 0.875rem;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-reveal-first {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-reveal-first.revealed {
  display: block;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-reveal-second {
  max-height: 0;
  overflow: hidden;
  transition: 0.1s all ease-in-out;
  margin-top: -1.5rem;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-reveal-second.revealed {
  max-height: 400px;
  margin-top: 0rem;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-cta {
  margin: 2rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-cta img {
  width: 100px;
  height: 100%;
  margin-bottom: 1.5rem;
}
#testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-cta button {
  font-weight: 800;
  font-size: 0.65rem;
}
#testimonials .container #swipe-box {
  display: none;
}
#testimonials .container #swipe-box #swipe-icon {
  margin-top: 2rem;
  width: 35px;
  height: 35px;
}
#testimonials .container #swipe-box p {
  font-weight: 800;
}

#faculty {
  color: #8D0024;
  padding: 4rem 0 2rem 0;
}
#faculty .container h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4rem;
}
#faculty .container #faculty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#faculty .container #faculty-copy .faculty-col {
  max-width: 80%;
  text-align: center;
  margin: 0 auto;
}
#faculty .container #faculty-copy .faculty-col img {
  max-width: 100%;
  margin-bottom: 1rem;
}
#faculty .container #faculty-copy .faculty-col h2 {
  margin-bottom: 1rem;
}
#faculty .container #faculty-copy .faculty-col p {
  margin-bottom: 2rem;
  line-height: 1.25rem;
}
#faculty .container #faculty-copy .faculty-col h2, #faculty .container #faculty-copy .faculty-col p {
  text-align: start;
}
#faculty .container #faculty-copy .faculty-col p {
  font-size: 0.875rem;
}
#faculty .container #faculty-copy .faculty-col #faculty-first-item {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#faculty .container #faculty-copy .faculty-col #faculty-first-item.revealed {
  display: block;
}
#faculty .container #faculty-copy .faculty-col .faculty-reveal {
  overflow: hidden;
  max-height: 0px;
  transition: 0.2s all ease-in-out;
  margin-top: -1.5rem;
}
#faculty .container #faculty-copy .faculty-col .faculty-reveal.revealed {
  max-height: 400px;
  margin-top: 0rem;
}
#faculty .container #faculty-copy button {
  margin-bottom: 2rem;
}

#faq {
  color: #8D0024;
}
#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 {
  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;
}
#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 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.6rem;
  font-style: italic;
}

#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: 360px) {
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 70%;
  }
}
@media (min-width: 368px) {
  #hero #hero-form #form-selector div p {
    max-width: 60%;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 70%;
    margin: 1.75rem auto;
  }
}
@media (min-width: 390px) {
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 65%;
  }
}
@media (min-width: 412px) {
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 63%;
  }
}
@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: 80%;
    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;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 60%;
    margin: 1.75rem auto;
  }
  #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) {
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 100%;
  }
  #footer .container #footer-socials #copyright {
    max-width: 100%;
  }
}
@media (min-width: 600px) {
  #hero #hero-copy h1 {
    font-size: 1.75rem;
  }
  #overview .container #overview-copy {
    text-align: start;
  }
  #outcomes .container #outcomes-cards {
    max-width: 55%;
  }
  #testimonials .container #scroll-box .testimonial-card {
    max-width: 70%;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    max-width: 100%;
    margin: 1.75rem auto;
  }
  #faq .container #accordion .accordion-item p {
    max-width: 95%;
  }
}
@media (min-width: 768px) {
  #hero {
    height: 1400px;
  }
  #faculty .container #faculty-copy .faculty-col {
    max-width: 60%;
  }
  #testimonials .container #scroll-box .testimonial-card {
    max-width: 60%;
  }
  #outcomes .container #outcomes-cards {
    max-width: 45%;
  }
  #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 {
    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: 3rem;
    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;
  }
  #overview .container {
    flex-direction: column;
    margin-top: 6rem;
    align-items: start;
  }
  #overview .container #overview-image-container {
    max-width: 100%;
  }
  #overview .container #overview-copy {
    text-align: start;
  }
  #overview .container #overview-copy h1, #overview .container #overview-copy p {
    margin: 0 0 1rem 0;
  }
  #overview .container #overview-copy p {
    font-size: 1rem;
  }
  #overview .container #overview-copy h1 {
    max-width: 100%;
    font-size: 1.5rem;
  }
  #promotion .promotion-copy .promotion-title, #promotion .promotion-copy .promotion-description {
    width: 100%;
  }
  #promotion .promotion-copy .promotion-title h1 {
    font-size: 3rem;
  }
  #promotion .promotion-copy .promotion-description h1 {
    font-size: 3rem;
  }
  #promotion .promotion-copy .promotion-description p {
    font-size: 1rem;
    margin-top: 2rem;
  }
  #promotion .promotion-copy .promotion-body {
    max-width: 85%;
  }
  #promotion .terms p {
    font-size: 0.875rem;
  }
  #enroll {
    flex-direction: column;
    height: 400px;
  }
  #enroll h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  #enroll button {
    font-size: 0.75rem;
  }
  #outcomes {
    padding: 6rem 4rem;
  }
  #outcomes .container {
    flex-direction: row;
    text-align: start;
  }
  #outcomes .container #outcome-title {
    margin-right: 3rem;
  }
  #outcomes .container h1 {
    font-size: 3rem;
  }
  #outcomes .container #outcomes-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 65%;
  }
  #outcomes .container #outcomes-cards div:not(:last-of-type) {
    margin-bottom: 0;
  }
  #outcomes .container #outcomes-cards .outcome-card {
    flex-direction: row;
  }
  #outcomes .container #outcomes-cards .outcome-card img {
    width: 60px;
  }
  #outcomes .container #outcomes-cards .outcome-card h2 {
    margin-bottom: 0.5rem;
  }
  #attendees {
    padding: 6rem;
  }
  #attendees .container h1 {
    font-size: 3.5rem;
  }
  #attendees .container #attendee-copy {
    flex-direction: row;
  }
  #attendees .container #attendee-copy div:first-of-type {
    margin-bottom: 0;
    margin-right: 5rem;
  }
  #attendees .container #attendee-copy .attendee-card img {
    width: 150px;
    margin-bottom: 1.25rem;
  }
  #attendees .container #attendee-copy .attendee-card p {
    font-size: 1rem;
    font-weight: 700;
  }
  #attendees .container #attendee-copy .attendee-card:first-of-type img {
    margin-bottom: 1.8rem;
  }
  #programme-information {
    padding: 6rem;
  }
  #programme-information .container h1 {
    font-size: 3.5rem;
  }
  #programme-information .container #prog-info-cards {
    flex-direction: row;
    text-align: start;
  }
  #programme-information .container #prog-info-cards .prog-col .prog-info-card {
    flex-direction: row;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  #programme-information .container #prog-info-cards .prog-col .prog-info-card img {
    width: 75px;
    margin-right: 1.5rem;
  }
  #testimonials .container h1 {
    font-size: 3rem;
  }
  #testimonials .container #scroll-box .testimonial-card {
    max-width: 50%;
  }
  #faculty .container h1 {
    font-size: 3.5rem;
    font-weight: 800;
  }
  #faculty .container #faculty-copy {
    max-width: 80%;
    margin: 0 auto;
  }
  #faculty .container #faculty-copy .faculty-col {
    max-width: 100%;
  }
  #faculty .container #faculty-copy .faculty-col img {
    width: 75%;
    margin-bottom: 0;
  }
  #faculty .container #faculty-copy .faculty-col h2 {
    font-size: 3rem;
    font-weight: 400;
  }
  #faculty .container #faculty-copy .faculty-col p {
    margin-bottom: 2rem;
  }
  #faculty .container #faculty-copy .faculty-col:last-of-type {
    max-width: 75%;
    margin-top: 2rem;
  }
  #faq {
    padding: 6rem 0 0 0;
  }
  #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 h1, #faq .container #last-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #faq .container #last-cta h1 {
    max-width: 80%;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  #faq .container #last-cta h2 {
    font-weight: 400;
    margin-bottom: 0;
  }
  #faq .container #last-cta #last-cta-deadline {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    align-items: flex-end;
  }
  #faq .container #last-cta #last-cta-deadline p {
    margin-bottom: 0;
  }
  #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;
  }
  #testimonials {
    padding: 6rem 0 8rem 0;
  }
  #testimonials .container h1 {
    font-size: 3.5rem;
  }
  #testimonials .container #scroll-box {
    display: grid;
    grid-template-columns: repeat(2, 0.4fr);
    justify-content: center;
    align-items: flex-start;
    row-gap: 1rem;
    -moz-column-gap: 0rem;
         column-gap: 0rem;
    margin: 0 5rem;
  }
  #testimonials .container #scroll-box div:not(:last-of-type) {
    margin-bottom: 0;
  }
  #testimonials .container #scroll-box .testimonial-card {
    justify-self: center;
    max-width: 80%;
    text-align: start;
    min-height: 620px;
    transition: 0.1s max-height ease-in-out;
  }
  #testimonials .container #scroll-box .testimonial-card.revealed {
    max-height: 100%;
  }
  #testimonials .container #scroll-box .testimonial-card img {
    width: 100%;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy h2 {
    margin: 1rem 1.75rem;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy p {
    margin: 1rem 1.75rem;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-cta {
    flex-direction: row;
  }
  #testimonials .container #scroll-box .testimonial-card .testimonial-copy .testimonial-cta img {
    margin-bottom: 0;
  }
  #testimonials .container #scroll-box .testimonial-card:nth-last-child(1):nth-child(odd) {
    grid-column: 1/span 2;
    max-width: 40%;
  }
  #faculty .container #faculty-copy .faculty-col {
    max-width: 660px;
  }
  #faculty .container #faculty-copy .faculty-col img {
    width: 100%;
  }
  #faculty .container #faculty-copy .faculty-col:last-of-type {
    max-width: 660px;
  }
}
@media (min-width: 1280px) {
  #faculty .container #faculty-copy {
    flex-direction: row;
    align-items: flex-start;
  }
  #faculty .container #faculty-copy .faculty-col {
    max-width: 40%;
    text-align: start;
  }
  #faculty .container #faculty-copy .faculty-col h2, #faculty .container #faculty-copy .faculty-col p {
    text-align: start;
  }
  #faculty .container #faculty-copy .faculty-col h2 {
    margin-top: -0.5rem;
  }
  #faculty .container #faculty-copy .faculty-col p {
    margin-bottom: 1.5rem;
  }
  #faculty .container #faculty-copy .faculty-col .faculty-reveal.revealed {
    margin-top: 0rem;
  }
  #faculty .container #faculty-copy .faculty-col:last-of-type {
    max-width: 50%;
    margin-top: 0rem;
  }
}
@media (min-width: 1366px) {
  nav {
    max-width: 1366px;
    margin: 0 auto;
  }
  nav ul li:not(:last-child) {
    margin-right: 2rem;
  }
  #hero .container {
    max-width: 80%;
  }
  #hero .container #hero-copy h1 {
    max-width: 100%;
    margin-left: 0rem;
    font-size: 3.25rem;
  }
  #hero .container #class-details .detail-card {
    width: 250px;
  }
  #overview {
    padding: 8rem 0;
  }
  #overview .container {
    max-width: 80%;
    flex-direction: row;
  }
  #overview .container #overview-image-container {
    margin-right: 4rem;
    max-width: 50%;
  }
  #promotion .container {
    max-width: 80%;
  }
  #promotion .promotion-copy {
    flex-direction: row;
    text-align: start;
    max-width: 100%;
  }
  #promotion .promotion-copy .promotion-title h1 {
    font-size: 3.5rem;
  }
  #promotion .promotion-copy .promotion-body {
    max-width: 100%;
    margin: 0;
  }
  #promotion .promotion-copy .promotion-description h1 {
    font-size: 3.5rem;
  }
  #promotion .promotion-copy .promotion-description p {
    font-size: 1rem;
    margin-top: 0;
  }
  #outcomes .container #outcome-title {
    margin-right: 1rem;
  }
  #outcomes .container h1 {
    font-size: 3.5rem;
  }
  #testimonials {
    padding: 6rem 0 8rem 0;
  }
  #testimonials .container {
    max-width: 1440px;
  }
  #testimonials .container h1 {
    font-size: 3.5rem;
  }
  #testimonials .container #scroll-box.active {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    cursor: grab;
    height: 100%;
    margin: 0;
  }
  #testimonials .container #scroll-box.active div:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  #testimonials .container #scroll-box.active .testimonial-card {
    max-width: 100%;
    text-align: start;
  }
  #testimonials .container #scroll-box.active .testimonial-card img {
    width: 400px;
  }
  #testimonials .container #scroll-box.active .testimonial-card .testimonial-copy .testimonial-cta {
    flex-direction: row;
    align-items: flex-start;
  }
  #testimonials .container #scroll-box.active .testimonial-card:first-of-type {
    margin-left: 860px;
  }
  #testimonials .container #scroll-box.active .testimonial-card:last-of-type {
    margin-right: 2rem;
  }
  #testimonials .container #swipe-box {
    display: none;
  }
  #testimonials .container #swipe-box.active {
    display: block;
  }
  #faculty .container #faculty-copy .faculty-col img {
    width: 500px;
  }
  #faculty .container #faculty-copy .faculty-col p {
    font-size: 1rem;
    line-height: 1.35rem;
  }
  #footer .container #footer-socials {
    grid-template-columns: 0.3fr 0.4fr 0.3fr;
  }
  #footer .container #footer-socials #copyright {
    width: auto;
  }
}
@media (min-width: 1600px) {
  #hero .container {
    max-width: 1336px;
  }
  #overview .container {
    max-width: 1400px;
  }
  #overview .container #overview-image-container {
    max-width: 100%;
    margin-top: 1rem;
  }
  #overview .container #overview-copy h1 {
    font-size: 3rem;
  }
  #promotion .container {
    max-width: 1366px;
  }
  #footer .container #footer-socials {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */