.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.hidden {
  display: none;
}

.cursorPointer {
  cursor: pointer;
}

.font-bold {
  font-weight: 600;
}

.trackingBtn button {
  width: 10px;
  height: 10px;
  background: none;
  border: none;
  background-color: #b1b2b4;
  border-radius: 100px;
  cursor: pointer;
}

.trackingBtn .customBtn {
  background-color: #A43634;
}

/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  height: auto;
  line-height: normal;
  width: auto;
}

button:focus, a:focus {
  outline: 2px solid #000;
}

.skip-link {
  position: absolute;
  color: #000;
  top: -40px;
  left: 0;
  background: #fff;
  z-index: 100;
  transition: all 0.3s ease-in-out;
  padding: 0.5em 0.5em;
}

.skip-link:focus {
  top: 0px;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}

li {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  color: #626262;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
  font-size: 16px;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  overflow-x: hidden;
}

@media screen and (min-width: 48em) {
  html {
    font-size: 100%;
  }
}
h2, h3 {
  color: #D03D33;
}

h2 {
  color: #D03D33;
  text-align: center;
  margin: 48px 0 48px 0;
}

.brandButtons {
  padding: 0.3rem 1rem;
  background-color: #D03D33;
  color: #ffffff;
  border: 0px solid;
  border-radius: 0.625rem;
  font-size: 0.8rem;
  width: 8.5rem;
  height: 3rem;
  font: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.brandButtons:hover {
  background-color: #fff;
  color: #D03D33;
  border: 1px solid #D03D33;
}

.alignBtn {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
  padding: 0 50px 0 50px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 6px 6px rgba(145, 144, 144, 0.3);
}

main {
  padding-top: 90px;
}

#eventSection, #studentProjectExhibit, #interactiveMediaDesign, #studentPortfolios, #eventDetailSect {
  scroll-margin-top: 90px;
}

#previous:hover, #previousCa:hover, #nextCa:hover, #next:hover {
  color: #fff;
  background-color: #D03D33;
}

#previous, #previousCa, #nextCa, #next {
  transition: all 0.3s ease-in-out;
}

#desktopMenu a:hover, #mobileMenu a:hover, .foot a:hover {
  text-decoration: underline;
}

#desktopMenu a, #mobileMenu a, .foot a {
  transition: all 0.3s ease-in-out;
}

header {
  background-color: #D03D33;
}

.logoWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#closeMobileMenuBtn {
  background: none;
  border: none;
  font-family: inherit;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  font-size: 3em;
  color: #fff;
  padding-right: 30px;
}

.fanshaweNavLogo {
  width: 15.25em;
  padding-left: 2em;
}

.mobileIcon {
  width: 2.5em;
}

.mobileIconWrapper {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  padding-right: 1.875em;
}

@media screen and (min-width: 75em) {
  .mobileIcon {
    display: none;
  }
}
#mobileMenu {
  background-color: #D03D33;
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 50vh;
  z-index: 100;
  /* Animated mobile menu */
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

/* Display mobile menu */
#mobileMenu.open {
  transform: translateY(0);
  box-shadow: 0 6px 6px rgba(145, 144, 144, 0.3);
}

#mobileMenu ul li {
  text-align: center;
  padding-bottom: 1em;
  border-bottom: 0.0625em solid #ffffff;
  margin-bottom: 1em;
}

#mobileMenu a {
  color: white;
}

.alignItemRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#mobileMenu li:hover {
  transform: scale(1.1);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

#mobileMenu li {
  transition: all 0.3s ease-in-out;
}

#desktopMenu {
  display: none;
}

@media screen and (min-width: 75em) {
  #desktopMenu {
    display: block;
  }
}
#desktopMenu ul {
  height: 100%;
  margin: 0;
  padding-right: 3.125em;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 3.75em;
}

#desktopMenu a {
  color: white;
}

#desktopMenu li:hover {
  transform: scale(1.1);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

#desktopMenu li {
  transition: all 0.3s ease-in-out;
}

.videoWrapper {
  height: auto;
}

.plyr {
  border-radius: 20px;
  box-shadow: 0 6px 6px rgba(145, 144, 144, 0.3);
}

:root {
  --plyr-color-main: #c70000;
  --plyr-video-controls-background: linear-gradient(rgba(0, 0, 0, 0), rgba(199, 0, 0, 0.341));
  --plyr-control-icon-size: 20px;
  --plyr-control-radius: 20px;
  --plyr-font-family: Helvetica, Arial, Sans-serif;
}

#heroSection canvas {
  width: 100%;
}
#heroSection #hero-animation-mb {
  display: block;
}
#heroSection #hero-animation-dk {
  display: none;
}

@media screen and (min-width: 75em) {
  #hero-animation-mb {
    display: none !important;
  }
  #hero-animation-dk {
    display: block !important;
  }
}
footer {
  background-color: #D03D33;
  padding: 5em;
  color: #ffffff;
  font-size: 0.875em;
}

.fanshaweFootLogo {
  width: 12.5em;
}

footer nav ul li {
  margin-bottom: 1.25em;
}

footer nav ul li a {
  color: #ffffff;
}

.socialMedia {
  margin-bottom: 1.25em;
}

.socialMedia ul li a {
  color: #ffffff;
}

.socialMedia ul li {
  display: inline;
  margin-right: 0.75em;
}

.socialMedia ul li:hover {
  transform: scale(1.2);
}

.socialMedia ul li {
  transition: all 0.3s ease-in-out;
}

.footerCollegeInfo {
  margin-bottom: 1.5em;
}

.footerAddress {
  margin-bottom: 1.5em;
}

.copyrightInfo {
  border-top: 0.125em solid #ffffff;
  padding-top: 1.25em;
}

.copyrightInfoPara {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 25.75em) {
  footer {
    font-size: 1em;
  }
}
@media screen and (min-width: 48em) {
  footer {
    font-size: 1em;
  }
}
@media screen and (min-width: 75em) {
  footer {
    font-size: 1em;
  }
  footer nav ul li {
    display: inline;
    margin-right: 1.75em;
  }
  .footerAddress {
    margin-bottom: 2em;
  }
  .socialMedia ul {
    display: flex;
    justify-content: flex-end;
  }
  .footerCollegeInfo {
    margin-bottom: 2em;
  }
  .copyrightInfo {
    padding-top: 2em;
  }
}
.foot nav li:hover {
  transform: scale(1.1);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.foot nav li {
  transition: all 0.3s ease-in-out;
}

/* ___________________________________________

       CSS Guide
___________________________________________ */
/*  
    01. Event Section
    02. Event Details Section
    03. Student Project Exhibit Section
    04. Interactive Media Design
    05. Students Portfolio Showcase
    06. Testimonials
*/
/* ------------- Event Section -------------*/
.eventInvitation {
  background-image: url(../images/Pattern-grey\ on\ white-subtle.jpg);
  background-size: cover;
  padding: 2rem 0 4rem 0;
}

.invitationText {
  background-color: #ffffff;
  border: 3px solid #F1F1F1;
  text-align: center;
  margin: 2em 1em;
  padding: 2em 1.5em;
}

.invitationText p {
  margin-bottom: 0.625em;
  line-height: 1.5em;
  text-align: left;
}

#invitation-subHeader {
  font-size: 16px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .invitationText h3 {
    font-size: 30px;
  }
  .invitationText p {
    font-size: 18px;
  }
  .invitationText {
    margin: 4em 3em;
    padding: 3em 4em;
  }
  #invitation-subHeader {
    font-size: 20px;
  }
  h2 {
    font-size: 30px;
  }
  h4 {
    font-size: 22px;
  }
}
@media screen and (min-width: 75em) {
  .invitationText h3 {
    font-size: 40px;
  }
  .invitationText p {
    font-size: 22px;
  }
  #invitation-subHeader {
    font-size: 24px;
  }
  h2 {
    font-size: 40px;
  }
  h4 {
    font-size: 24px;
  }
}
.invitationButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.375rem;
}

.eventInformation {
  margin: 0 1.25em 4.375em 1.25em;
}

#videoContainer {
  margin-bottom: 1.625em;
}

.marginUl {
  margin: 0 2em 0 3em;
}

.marginUl p {
  margin-bottom: 1.5em;
  line-height: 1.5em;
}

.listStyleLi {
  list-style-type: disc;
}

#eventContent {
  font-size: 16px;
}

/* ------------- Event Details Section -------------*/
.eventDetails {
  margin: 0;
  background-color: #A43634;
  color: #ffffff;
  padding: 0 22px 76px 22px;
}

.eventDetailsContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20rem;
  border: 2px solid #b1b2b4;
  border-radius: 10px;
  padding: 0 22px;
  margin-bottom: 22px;
  text-align: center;
}
.eventDetailsContainer i {
  font-size: 50px;
  margin-bottom: 20px;
}

.eventDetails h2 {
  color: #fff;
}

.eventDetails h3 {
  margin-bottom: 24px;
  color: #fff;
}

@media screen and (min-width: 48em) {
  .eventDetailsContainer h4 {
    font-size: 24px;
  }
  .eventDetailsContainer p {
    font-size: 18px;
  }
  .eventDetailsContainer i {
    font-size: 60px;
  }
}
#qr-code {
  width: 40%;
  margin-top: 24px;
}

/* ------------- Student Project Exhibit Section -------------*/
.SPEWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}

.SPEImg {
  width: 100%;
  height: auto;
  border: 2px solid #D03D33;
  border-radius: 20px;
  margin-bottom: 40px;
}

@media screen and (min-width: 48em) {
  .SPEImg {
    width: 653px;
    height: auto;
  }
  #studentProjectExhibit h3 {
    font-size: 25px;
  }
}
@media screen and (min-width: 75em) {
  .SPEImg {
    width: 509px;
    height: auto;
    margin-right: 126px;
  }
  .SPEWrapper {
    flex-direction: row;
  }
  #studentProjectExhibit .groupWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
  }
  #studentProjectExhibit h3 {
    font-size: 35px;
  }
}
.btnWrapper button {
  font-size: 16px;
  width: 30px;
  height: 30px;
  background: none;
  border: 1px solid #A43634;
  border-radius: 100px;
  color: #A43634;
  cursor: pointer;
  margin-left: 50px;
}

#studentProjectExhibit {
  margin-bottom: 68px;
}

.groupWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
}
.groupWrapper li {
  border-left: 2px solid #D03D33;
  padding-left: 10px;
}

/* Carousel transition */
@keyframes fadeInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fadeIn-right {
  animation: fadeInRight 2s ease forwards;
}

.fadeIn-left {
  animation: fadeInLeft 2s ease forwards;
}

/* ------------- Interactive Media Design -------------*/
.IMDContent {
  margin-bottom: 50px;
}

.IMDContent img {
  /* width: 372px; */
  width: 100%;
  border: 2px solid #A43634;
  border-radius: 20px;
}

.IMDContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  padding: 0 20px 0 20px;
}

.IMDContent > div:first-child {
  order: 2;
}

.IMDContent .IMDImg {
  order: 1;
}

.IMDContent button {
  display: block;
  margin: 0 auto;
}

/* .IMDImg {
    max-width: 372px;
} */
@media screen and (min-width: 48em) {
  .IMDContent img {
    /* width: 576px; */
    width: 100%;
    height: auto;
  }
  .IMDImg {
    max-width: 576px;
  }
}
@media screen and (min-width: 75em) {
  .IMDContent img {
    /* width: 509px; */
    width: 100%;
    height: auto;
  }
  .IMDImg {
    max-width: 509px;
  }
  .IMDContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .IMDContent > div:first-child {
    order: 1;
  }
  .IMDContent .IMDImg {
    order: 2;
  }
  .IMDContent button {
    display: block;
    margin: 0;
  }
}
.IMDContent p {
  margin-bottom: 1.5em;
  line-height: 1.5em;
}

.IMDSmallImg img {
  /* width: 178px; */
  width: 100%;
  height: auto;
  border: 2px solid #A43634;
  border-radius: 20px;
}

.IMDSmallImg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  max-width: 336px;
}

.IMDGallery {
  padding: 0 20px;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .IMDSmallImg img {
    /* width: 336px; */
    width: 100%;
    height: auto;
  }
  .IMDSmallImg {
    max-width: 336px;
  }
}
@media screen and (min-width: 75em) {
  .IMDSmallImg img {
    /* width: 255px; */
    width: 100%;
    height: auto;
  }
  .IMDSmallImg {
    max-width: 255px;
  }
  .IMDGallery {
    padding: 0;
    width: 100%;
  }
}
/* ------------- Our Team -------------*/
#ourTeam img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid #A43634;
  border-radius: 1.25em;
}

.OTImg {
  overflow: hidden;
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  max-width: 336px;
}

.relativeDiv {
  opacity: 0;
  position: absolute;
  inset: 0;
  background-color: rgba(241, 241, 241, 0.5019607843);
  height: auto;
  /* height: 155px; */
  border-radius: 1.25em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 20px 20px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.relativeDiv a {
  background-color: #D03D33;
  width: 80%;
  padding: 0.25em;
  border-radius: 1.25em;
  text-align: center;
  color: #F1F1F1;
  font-size: 0.875em;
}

.relativeDiv h3 {
  color: #000;
}

.OTImg:hover .relativeDiv {
  opacity: 1;
}

.OTGallery {
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 48em) {
  #ourTeam img {
    /* max-width: 336px; */
    width: 100%;
    height: auto;
  }
  /* .relativeDiv {
      width: 333px;
      height: 294px;
  } */
  .OTImg {
    max-width: 336px;
  }
}
@media screen and (min-width: 75em) {
  #ourTeam img {
    /* max-width: 255px; */
    width: 100%;
    height: auto;
  }
  /* .relativeDiv {
      width: 252px;
      height: 223px;
  } */
  .OTImg {
    max-width: 255px;
  }
}
#ourTeam {
  padding: 0 20px;
}

/* ------------- Students Portfolio Showcase -------------*/
.studentAvatarImg {
  width: 41px;
  height: 41px;
  background-color: #d9d9d9;
  border: 1.5px solid #FFE2E1;
  border-radius: 100px;
}

.studentListWrapper {
  border: 1px solid #F5F5F5;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3px;
  padding: 16px 6px;
  font-size: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 2px rgba(145, 144, 144, 0.3);
  transition: all 0.3s ease-in-out;
}

.studentListWrapper:hover {
  border: 1px solid #D03D33;
}

.studentListWrapper:hover a {
  background-color: #D03D33;
  color: #F1F1F1;
  padding: 0.25em 0.5em;
  border-radius: 1.25em;
}

.studentListWrapper h3 {
  color: #626262;
}

.studentListWrapper a {
  color: #D03D33;
  transition: all 0.3s ease-in-out;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 6px;
  font-size: 0.625rem;
  margin: 4px 0 14px 0;
}

.tags li {
  border-radius: 10px;
  background-color: #FFE2E1;
  color: #D03D33;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  padding: 2px 7px;
  margin-top: 6px;
}

#filterIcon nav {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (min-width: 48em) {
  .studentAvatarImg {
    width: 45px;
    height: 45px;
  }
  .tags {
    font-size: 12px;
  }
  .studentListWrapper a {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
  #filterIcon nav {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 75em) {
  .studentAvatarImg {
    width: 50px;
    height: 50px;
  }
}
#filterIcon button {
  background: none;
  font-family: inherit;
  border: 2px solid #b1b2b4;
  border-radius: 20px;
  color: #63656B;
  width: fit-content;
  padding: 8px 14px 8px 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

#filterIcon button:hover {
  color: #fff;
  background-color: #D03D33;
  border: none;
}

#filterIcon .cutomFilter {
  color: #fff;
  background-color: #D03D33;
  border: none;
}

#studentPortfolios {
  margin: 0 15px 0;
}

/* ------------- Testimonials -------------*/
.testimonials {
  margin-bottom: 60px;
}

.testimonialAvatarImg img {
  width: 71px;
  height: 71px;
  border-radius: 100px;
}

.testimonials li {
  width: 336px;
  height: 355px;
  border: 2px solid #D03D33;
  padding: 36px 14px 36px 13px;
}

.testimonials {
  font-size: 14px;
}

.robTest {
  display: none;
}

@media screen and (min-width: 48em) {
  .testimonialAvatarImg img {
    width: 77px;
    height: 77px;
  }
  .testimonials li {
    width: 513px;
  }
  .testimonials p {
    font-size: 16px;
  }
  .nameWrapper h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 75em) {
  .testimonialAvatarImg img {
    width: 84px;
    height: 84px;
  }
  .testimonials li {
    width: 406px;
  }
  .robTest {
    display: block;
  }
  article .nameWrapper h3 {
    font-size: 28px;
  }
}
.testimonialsWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 78px;
}

.quote {
  padding: 0 36px 0 36px;
}

.nameWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 18px;
  margin-bottom: 20px;
}
.nameWrapper h3 {
  font-size: 20px;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  padding: 10px;
  background-color: #A43634;
  border: 2px solid #B1B2B4;
  border-radius: 25px;
  color: #ffffff;
  font-size: 20px;
  transform: scale(0);
  transition: all 0.4s;
}
#backToTop:hover {
  bottom: 40px;
}
#backToTop.show {
  transform: scale(1);
}/*# sourceMappingURL=main.css.map */