/*
 * Globals
 */
:root {
  --secondaryColor: #40b9ff;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
}

h1 {
  font-size: 50px;
}

h3 {
  font-size: 25px;
}

p {
  line-height: 35px;
  letter-spacing: 1px;
}

/* Links */
a {
  text-decoration: none;
  color: black;
}

.contactInfo a:focus,
.contactInfo a:hover,
a:focus,
a:hover {
  color: var(--secondaryColor);
}

/*
 * Base structure
 */
html {
  scroll-margin-top: 174px;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  background-color: white;
}

button {
  padding: 25px;
  background-color: white;
  border: none;
}

button:hover,
button:focus,
button.active {
  color: var(--secondaryColor);
  ;
}

.highlighted {
  color: var(--secondaryColor);
  ;
}

.large {
  font-weight: bold;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.9);
}

.underline-dark {
  border-top: 2px solid black;
}

.underline-light {
  border-top: 2px solid white;
}

.active {
  color: var(--secondaryColor);
  ;
}

.hidden {
  display: none;
}

/*
* Navigation
*/
nav {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.navbar>.container {
  margin-left: 5em;
}

nav .navbar-brand {
  font-family: "Inter", sans-serif;
  font-size: 1vw;
  color: white;
  margin-right: 35em;
}

nav .nav-item {
  color: white;
}

nav .nav-item:hover,
nav .nav-item:focus {
  color: var(--secondaryColor);
  ;
}

nav .active {
  color: var(--secondaryColor);
  ;
}

nav .bi-list {
  padding: 10px;
  color: white;
}

/*
* Header
*/
header {
  color: white;
}

header p {
  font-size: 5rem;
  font-family: "Inter", sans-serif;
}

header .hero-img {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.slideshow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
  filter: brightness(50%)
}

.bg1 {
  background-image: url('../img/slides/DrexelMocap.png');
}

.bg2 {
  background-image: url('../img/slides/FlyGirl.png');
  background-position: top;
}

.bg3 {
  background-image: url('../img/slides/GroupPanel.png');
}

.bg4 {
  background-image: url('../img/slides/LexHMCAdjust.PNG');
  background-position: 25%;
}

.bg5 {
  background-image: url('../img/slides/GroupMocap.png');
  background-position: 75%;
}

.bg6 {
  background-image: url('../img/slides/SoloExpoPanel.png');
  background-position: 100% 10%;
}

header .hero-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -10;
}

header .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

header .hero-img .hero-text h1 {
  font-size: 10vw;
  line-height: 8.5vw;
  text-align: center;
}

header .hero-img .hero-text .bi-arrow-down {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 150px;
  font-size: 120px;
  color: white;
  z-index: 3;
}

header .hero-img .hero-text .bi-arrow-down:hover {
  color: var(--secondaryColor);
  ;
}

/*
 * Gallery
 */
.portfolio {
  color: white
}

.portfolio a:focus,
.portfolio a:hover {
  color: white;
}

.portfolio .bi-arrow-up {
  font-size: 35px;
}

.portfolio .menu {
  margin-top: 90px;
  margin-bottom: 60px;
}

.portfolio .menu a {
  text-decoration: none;
  color: white;
}

.portfolio .menu a:hover {
  color: var(--secondaryColor);
  ;
}

.portfolio .gallery {
  margin-top: 100px;
}

.portfolio .gallery .gallery__item {
  position: relative;
  overflow: hidden;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.portfolio .gallery .gallery__item .gallery__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  background-color: black;
  display: block;
}

.portfolio .gallery .gallery__item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondaryColor);
  ;
  opacity: 100%;
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

.portfolio .gallery .gallery__item .overlay .text {
  position: absolute;
  width: 100%;
  overflow: hidden;
  bottom: 0px;
  z-index: 2;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}

.portfolio .gallery .gallery__item .overlay .text h3 {
  font-size: 15px;
  color: white;
}

.portfolio .gallery .gallery__item .overlay .text p {
  font-size: 12px;
}

.portfolio .gallery .gallery__item .overlay .text a:hover {
  color: white;
}

.portfolio .gallery .gallery__item:hover .overlay {
  height: 120px;
}

.portfolio .gallery .gallery__item:hover .text {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.portfolio .gallery .gallery__item:hover .gallery__img {
  -webkit-transform: translate3d(0, -10%, 0);
  transform: translate3d(0, -10%, 0);
}

.btn-portfolio {
  background-color: black;
  color: white;
}

#filters button::before,
#filters button::after {
  display: inline-block;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s;
}

#filters button::before {
  margin-right: 10px;
  content: '[';
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  transform: translateX(20px);
  color: #b59a5a;
  font-weight: 900;
}

#filters button::after {
  margin-left: 10px;
  content: ']';
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  transform: translateX(-20px);
  color: #b59a5a;
  font-weight: 900;
}

#filters button:hover::before,
#filters button:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
}

#portfolio {
  padding-top: 65px;
  margin-top: -65px;
}

/*
 * resume accordion
 */
.resume {
  background-color: black;
  color: black;
}

.resume .item {
  padding-top: 40px;
  padding-bottom: 60px;
}

.resume .active {
  background-color: red;
  color: blue;
}

.resume button {
  background-color: black;
  color: white;
  font-size: 39px;
}

.resume button:hover {
  color: var(--secondaryColor);
  ;
}

#resume {
  padding-top: 160px;
  margin-top: -160px;
}

.jobCompany {
  font-size: 25px;
  display: inline-flex;
  padding-top: 20px;
}

.jobTitle {
  font-size: 20px;
  font-style: italic;
  padding-top: 5px;
}

.jobDescription {
  padding-top: 5px;
}

/*
 * About section
 */
.about {
  margin-bottom: 90px;
}

.about p {
  margin-top: 40px;
}

#about {
  padding-top: 290px;
  margin-top: -200px;
}

/*
 * Contact
 */
.contact {
  color: white;
}

.contactInfo {
  text-align: center;
}

.contactInfo a {
  color: white;
  font-size: 20px;
  display: block;
}

/*
 * Footer
 */
footer {
  margin-bottom: 40px;
}

footer span {
  color: var(--secondaryColor);
  ;
}

@media (max-width: 576px) {
  header .hero-img .hero-text .bi-arrow-down {
    font-size: 50px;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .portfolio .gallery .gallery__item:hover .overlay {
    height: 160px;
    background-color: red;
  }

  .portfolio .gallery .gallery__item .text,
  .portfolio .gallery .gallery__item:hover .text {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  header .hero-img .hero-text h1 {
    font-size: 15vw;
    line-height: 13.5vw;
  }
}

@media (max-width: 1200px) {
  .gallery__item:hover .overlay {
    height: 100px;
  }
}

/*# sourceMappingURL=style.css.map */