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

.home {
  color: white;
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  align-items: center;
  text-align: center;
  background: linear-gradient(to top, rgba(48, 48, 48, 0.7), rgba(48, 48, 48, 0.5)), url("../img/Home-background.gif") center;
  background-size: cover;
}
.home_name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid white;
  color: rgb(234, 234, 29);
  font-weight: 700;
}

.menu-button {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-button:hover {
  color: rgb(234, 234, 29);
}
.menu-button_burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.5s ease-in-out;
}
.menu-button_burger:hover {
  color: rgb(234, 234, 29);
}
.menu-button_burger::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.5s ease-in-out;
}
.menu-button_burger::before:hover {
  color: rgb(234, 234, 29);
}
.menu-button_burger::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.5s ease-in-out;
}
.menu-button_burger::after:hover {
  color: rgb(234, 234, 29);
}
.menu-button_burger.open {
  transform: rotate(720deg);
  background: transparent;
}
.menu-button_burger.open::before {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-button_burger.open::after {
  transform: rotate(-45deg) translate(3px, -6px);
}

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

.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;
}

.menu-nav_item:nth-child(5) {
  transition-delay: 0.65s;
}

.about {
  padding-bottom: 2rem;
}
.about_bio-image {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to top, rgba(48, 48, 48, 0.7), rgba(48, 48, 48, 0.5)), url("../img/Home-background.gif") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.about_bio-image p {
  margin-bottom: 2rem;
}
.about_bio {
  width: 80%;
  text-align: center;
}
.about_bio .text-secondary {
  padding-bottom: 1rem;
}
.about .activities {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.about .activities_activity {
  background: rgb(73.5, 73.5, 73.5);
  padding: 0.5rem;
  border-bottom: 5px solid rgb(234, 234, 29);
}
.about .activities_activity h2, .about .activities_activity h3 {
  margin: 0.5rem 0;
}
.about .activities_activity h6 {
  margin: 0.3rem 0;
}
.about .activities_activity a {
  transition: all 0.5s ease-in-out;
}
.about .activities_activity a:hover {
  color: rgb(234, 234, 29);
}
.about .profiles {
  display: flex;
  flex-direction: column;
}
.about footer {
  transform: rotate(90deg) translate(-6rem, -5.3rem);
}

.projects {
  padding-bottom: 2rem;
}
.projects_bio-image {
  height: 30vh;
  width: 100%;
  background: linear-gradient(to top, rgba(48, 48, 48, 0.7), rgba(48, 48, 48, 0.5)), url("../img/Home-background.gif") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.projects_bio-image .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.projects_items {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.projects_item {
  position: relative;
  border-bottom: 5px solid rgb(234, 234, 29);
  overflow: hidden;
  cursor: pointer;
}
.projects_item img {
  width: 100%;
}
.projects_item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(234, 234, 29);
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.projects_item::after:hover {
  color: rgb(234, 234, 29);
}
.projects_item:hover::after {
  top: 0;
  opacity: 0.9;
}
.projects_item:hover .projects_button {
  opacity: 1;
}
.projects_buttons {
  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_button {
  opacity: 0;
  color: black;
  transition: all 0.5s ease-in-out;
  font-size: 3rem;
}
.projects_button:hover {
  color: rgb(234, 234, 29);
}
.projects_button:hover {
  color: white;
}
.projects .profiles {
  display: flex;
  flex-direction: column;
}
.projects footer {
  transform: rotate(90deg) translate(-6rem, -5.3rem);
}

.contact {
  color: white;
  height: 100%;
  padding-top: 35vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(48, 48, 48, 0.7), rgba(48, 48, 48, 0.5)), url("../img/Home-background.gif") center;
  background-size: cover;
}
.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.contact_list {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 1.5rem;
}
.contact_list_name {
  grid-gap: 2rem;
  margin-bottom: 1rem;
}
.contact .profiles {
  position: initial;
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .menu-button {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: right;
  }
  .nav .menu-nav_item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav_link {
    font-size: 1.5rem;
  }
  .about_bio {
    font-size: 1.5rem;
  }
  .projects_bio-image {
    height: 40vh;
  }
  .projects_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .projects_items {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .menu-button {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: right;
  }
  .nav .menu-nav_item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav_link {
    font-size: 1.5rem;
  }
  .about_bio {
    font-size: 1.5rem;
  }
  .projects_bio-image {
    height: 50vh;
  }
  .projects_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
}
body {
  background: rgb(48, 48, 48);
  color: white;
  height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Vernada Sans-Serif;
  line-height: 1;
}

h1 h2 h3 {
  font-weight: 400;
}

a {
  color: white;
  text-decoration: none;
}

.text-secondary {
  color: rgb(234, 234, 29);
}

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

main {
  height: 100%;
  width: 100%;
}
main .profiles {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
main .profiles a {
  padding: 0.4rem;
  transition: all 0.5s ease-in-out;
}
main .profiles a:hover {
  color: rgb(234, 234, 29);
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  right: 1rem;
  text-align: right;
  padding: 1rem;
  color: white;
}/*# sourceMappingURL=main.css.map */