  ﻿
html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



p {
  line-height: 1.5;
}


.visuallyhidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.back-button {
  padding: 1em;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.back-button:hover, .back-button:focus {
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}
.back-button a {
  color: #AB42AD;
  font-weight: 700;
}
.back-button span {
  padding-right: 0.5em;
}

.alumni-body {
  overflow: hidden;
}
.alumni-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.alumni-image-wrapper {
  position: absolute;
  width: 50%;
  height: 100%;
}
.alumni-image-wrapper::before {
  /*content: "";*/
  /* background: linear-gradient(90deg, rgba(131, 58, 180, 0) 0%, rgba(29, 143, 253, 0.3141631653) 56%, rgba(241, 69, 252, 0.5074404762) 100%); */
  
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  pointer-events: none;
  opacity: 1;
  -webkit-backdrop-filter: saturate(0.7);
          backdrop-filter: saturate(0.7);
  transition: all 0.5s;
}

.alumni-profile {
  border-radius: 10px;
  color: #333;
  font-size: 1.2em;
}
.alumni-profile h1 {
  font-size: 3em;
  color: #662d91;
}

.alumni-profile p {
  margin: 1em;
}



.alumni-ctas {
  display: flex;
  flex-direction: column;
}
.alumni-cta {
  display: flex;
  flex-direction: row;
  background-color: #dedbee;
  border-radius: 10px;
  color: #AB42AD;
  font-size: 1.2em;
  height: 150px;
  border: 2px solid white;
  transition: all 0.3s; 
}
.alumni-cta:hover, .alumni-cta:focus {
 border: 2px solid black;
}
.alumni-cta__image {
  width: 50%;
  border-radius: 10px;
}
.alumni-cta__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0 0 10px;
}
.alumni-cta__content {
  padding: 1em;
  display: flex;
  align-items: center;
  font-weight: 700;
}

@media (max-width: 800px) {
  .back-button {
    position: unset;
    margin: 1em;
    padding-top: 1em;
  }
  .alumni-body {
    overflow: unset;
  }
  .alumni-wrapper {
    position: unset;
  }
  .alumni-content {
    min-height: unset;
    max-height: unset;
    width: 100%;
    float: unset;
    overflow: unset;
    background: transparent;
  }
  .alumni {
    display: flex;
    flex-direction: column;
  }
  .alumni-image-wrapper {
    position: unset;
    height: unset;
    width: unset;
  }
  .alumni-image-wrapper::before {
    display: none;
  }
}
.alumni-listing {
  margin: 0 1em;
}

.peopleWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  background: transparent;
  margin-top: 2em;
  padding: 0;
}
.peopleWrapper li {
  max-width: 100%;
  list-style: none;
}

.personWrapper {
  width: 350px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  filter: drop-shadow(2px 5px 5px rgba(0, 0, 0, 0.2));
  text-decoration: none;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.personWrapper:hover, .personWrapper:focus {
  cursor: pointer;
}
.personWrapper:hover .imgWrapper::before, .personWrapper:focus .imgWrapper::before {
  opacity: 0;
}
.personWrapper:hover .imgWrapper ~ .detailsWrapper, .personWrapper:focus .imgWrapper ~ .detailsWrapper {
  box-shadow: 0px 0px 0px 5px #7f507f;
}
.personWrapper:hover img, .personWrapper:focus img {
  border-radius: 20px;
}

.personWrapper:hover .imgWrapper, .personWrapper:focus .imgWrapper {
  scale: 1.01;
}
.imgWrapper {
  display: block;
  z-index: 2;
  position:relative;
  transition: all 0.3s;
  /* scale: 1.05; */
}
.imgWrapper::before {
  content: "";
  /* background-colour: rgba(0, 0, 0, 0.05); */
  /* background: linear-gradient(90deg, rgba(131, 58, 180, 0) 0%, rgba(29, 143, 253, 0.3141631653) 56%, rgba(241, 69, 252, 0.5074404762) 100%); */
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 13;
  pointer-events: none;
  border-radius: 15px;
  opacity: 1;
  box-shadow: 0 0 200px rgba(0,0,0,0.15) inset;
  -webkit-backdrop-filter: saturate(0.7);
          backdrop-filter: saturate(0.7);
  transition: all 0.5s;
  max-width: 100%;
}



.imgWrapper img {
  width: 350px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
  filter: drop-shadow(8px 11px 5px rgba(0, 0, 0, 0.1));
  transition: all 0.5s;
  max-width: 100%;
}

.detailsWrapper {
  border: 0px solid transparent;
  height: 100%;
  box-shadow: 0 0px 0 0 #7f507f;
  width: 90%;
  background-color: #7f507f;
  margin-top: -20px;
  z-index: 1;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  display: block;
  border-radius: 10px;
  font-family: sans-serif;
  transition: all 0.5s;
  text-shadow: 1.5px 1.5px rgba(0, 0, 0, 0.3);
}
.detailsWrapper h2, .detailsWrapper p {
  color: #fff;
}

.detailsWrapper p:first-of-type {
  margin: 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 5px solid #ffffff2e;
  
}

.detailsWrapper h2 {
  margin: 0;
  margin-top: 1em;
}

@media (max-width: 800px) {
  .imgWrapper {
    width: 90%;
  }
  .imgWrapper::before {
    width: 100%;
    height: 100%;
  }
  .imgWrapper img {
    width: 100%;
    height: auto;
  }
  .personWrapper {
    width: 100%;
  }
}/*# sourceMappingURL=main-dark.css.map */