* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.home {
  height: 100%;
  padding-top: 30vh;
  padding-bottom: 40vh;
  overflow: hidden;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/10 iconic machines from the last 100 years.jpg") center top;
  background-size: cover;
  animation: 0.75s ease-out 0s 1 slideInFromTop;
}
.home__name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
}
.home__name--last {
  color: #07a4c0;
  font-weight: 700;
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.menu-btn__burger::before, .menu-btn__burger::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.menu-btn__burger::after {
  top: 8px !important;
  width: 20px !important;
}
.menu-btn__burger.open {
  transform: rotate(720deg);
  background: transparent;
}
.menu-btn__burger.open::before, .open.menu-btn__burger::after {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-btn__burger.open::after {
  width: 28px !important;
  transform: rotate(-45deg) translate(3px, -7px);
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.98;
  visibility: hidden;
}
.navigation.open {
  visibility: visible;
}
.navigation .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #272727;
  list-style-type: none;
  padding-right: 1rem;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.navigation .menu-nav.open {
  transform: translateY(0);
}
.navigation .menu-nav__item {
  transform: translateX(100vw);
  transition: all 0.3s ease-in-out;
}
.navigation .menu-nav__item.open {
  transform: translateX(0);
}
.navigation .menu-nav__item.active > a {
  color: #07a4c0;
}
.navigation .menu-nav__link {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 3.3vh 0;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
.navigation .menu-nav__link:hover {
  color: #07a4c0;
}

.menu-nav__item:nth-child(1) {
  transition-delay: 0.25s;
}

.menu-nav__item:nth-child(2) {
  transition-delay: 0.35s;
}

.menu-nav__item:nth-child(3) {
  transition-delay: 0.45s;
}

.menu-nav__item:nth-child(4) {
  transition-delay: 0.55s;
}

.about {
  padding-bottom: 2rem;
}
.about__bio-image {
  height: 30vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/10 iconic machines from the last 100 years.jpg") center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.about__bio {
  width: 80%;
  text-align: center;
}
.about .text-accented {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #07a4c0;
}
.about .jobs {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  animation: 1s ease-out 0s 1 slideInFromLeft;
}
.about .jobs .accordion-button {
  background-color: #272727;
}
.about .jobs .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.about .jobs .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.about .jobs #aboutMe {
  background: #272727;
  border: none;
}
.about .jobs #myBio {
  border: none;
}
.about .jobs__job {
  background: #414141;
  padding: 0.5rem;
  border-bottom: 5px solid #07a4c0;
}
.about .jobs__job h2,
.about .jobs__job h3 {
  margin: 0.5rem 0;
}
.about .jobs__job h6 {
  margin: 0.3rem 0;
  text-decoration: underline;
}
.about .jobs__job ul {
  margin: 2rem;
}
.about .social-icons {
  display: flex;
  flex-direction: column;
}
.about footer {
  transform: rotate(90deg) translate(-3rem, -5rem);
}

.projects {
  padding-bottom: 2rem;
}
.projects__bio-image {
  height: 30vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/10 iconic machines from the last 100 years.jpg") center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.projects__bio {
  width: 80%;
  text-align: center;
}
.projects .text-accented {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #07a4c0;
}
.projects #projectsCarousel {
  padding-top: 10rem;
  width: 50%;
}
.projects #projectsCarousel .carousel-item img {
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  height: 50vh;
}
.projects__items {
  width: 40vw;
  margin: 3rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  align-items: top;
  animation: 1s ease-out 0s 1 slideInFromRight;
}
.projects__item {
  position: relative;
  border-bottom: 5px solid #07a4c0;
  overflow: hidden;
  text-align: center;
}
.projects__item img {
  width: auto;
  max-width: 100%;
}
.projects__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #272727;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.projects__item:hover::after {
  top: 0;
  opacity: 0.9;
}
.projects__item:hover .projects__btn {
  text-align: center;
  opacity: 1;
}
.projects__item h1 {
  text-align: center;
  text-transform: uppercase;
}
.projects .acyl {
  position: relative;
  overflow: hidden;
  padding: 5rem;
  width: 100%;
}
.projects .acyl img {
  max-width: 100%;
}
.projects .acyl h1 {
  text-align: center;
  text-transform: uppercase;
}
.projects__btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  text-align: center;
}
.projects__btn {
  opacity: 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.projects .social-icons {
  display: flex;
  flex-direction: column;
}
.projects footer {
  transform: rotate(90deg) translate(-3rem, -5rem);
}

.contact {
  height: 100%;
  padding: 40vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/10 iconic machines from the last 100 years.jpg") center top;
  background-size: cover;
}
.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.contact .text-secondary {
  color: #07a4c0;
}
.contact__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  font-size: 1.5rem;
}
.contact .social-icons {
  position: initial;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .menu-btn {
    visibility: hidden;
  }
  .navigation {
    visibility: visible;
    background-color: rgba(39, 39, 39, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0.5;
    height: 10vh !important;
  }
  .navigation:hover {
    opacity: 0.75;
  }
  .navigation .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: right;
  }
  .navigation .menu-nav__item {
    display: inline;
    padding-right: 20%;
  }
  .navigation .menu-nav__link {
    font-size: 1.5rem;
  }
  .about__bio {
    font-size: 1.5rem;
    text-align: left;
    padding: 5rem;
  }
  .projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .projects__bio-img {
    height: 50vh;
  }
}
body {
  background: #272727;
  color: #fff;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100%;
  width: 100%;
}
main .social-icons {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
main .social-icons a {
  padding: 0.4rem;
  transition: all 0.3s ease-in-out;
}
main .social-icons a:hover {
  color: #07a4c0;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  right: 1rem;
  text-align: right;
  padding: 1rem;
  color: #fff;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */

.tooltip {
  position: relative;
  z-index: 1;
  display: inline-block;
  border-bottom: 1px dotted #fff;
  color: #fff;
  opacity: 1 !important;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.fa-circle-info {
  position: relative;
  font-size: 0.6rem;
  bottom: 0.3rem !important;
  color: #07a4c0;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10%;

  /* Position the tooltip */
  position: absolute;
  left: 105%;
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}