.hand-color {
  color: #09b674;
}

@keyframes loading {
  5% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1);
  }
  30% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(2880deg);
  }
}
@keyframes end-loading {
  0% {
    transform: translateY(0px);
    opacity: 1;
    z-index: 2;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1900px) scale(0);
    opacity: 0;
    z-index: -2;
  }
}
@keyframes logo-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes Letter-rotate {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    color: #09b674;
  }
  75% {
    color: fuchsia;
  }
  100% {
    transform: rotateY(360deg);
    height: 1em;
  }
}
@keyframes hello {
  0% {
    transform: translateX(-20px);
  }
  25% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(-20px);
  }
  75% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes turning-hello {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
body {
  font-family: "Montserrat", sans-serif;
  background: black;
  color: white;
}

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

.groupomania-link {
  text-decoration: underline fuchsia;
}
.groupomania-link:hover {
  color: fuchsia;
  font-weight: bold;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  animation: end-loading 2s 3.5s forwards;
  border-bottom: 2px solid black;
  box-shadow: 2x 12px 4px white;
  background-color: black;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.loader-img {
  width: 100px;
  height: 100px;
  animation: loading 4s ease-in-out forwards;
}
@media all and (min-width: 900px) {
  .loader-img {
    width: 120px;
    height: 120px;
  }
}

#logo {
  width: 60px;
  height: 60px;
}
#logo:hover {
  animation: logo-rotate linear 1.5s forwards;
}

nav {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 650px) {
  nav {
    justify-content: space-around;
  }
}
@media all and (min-width: 980px) {
  nav {
    justify-content: space-between;
  }
}
nav.nav-mobile-version li {
  padding-left: 10px;
}
@media all and (min-width: 400px) {
  nav.nav-mobile-version li {
    padding-left: 20px;
  }
}
@media all and (min-width: 520px) {
  nav.nav-mobile-version li {
    padding-left: 25px;
  }
}
@media all and (min-width: 650px) {
  nav.nav-mobile-version li {
    padding-left: 0;
  }
}
@media all and (min-width: 980px) {
  nav.nav-mobile-version {
    display: none;
  }
}
nav.nav-desktop-version {
  display: none;
}
@media all and (min-width: 980px) {
  nav.nav-desktop-version {
    display: flex;
  }
}
nav li {
  width: 90%;
  height: 30%;
  margin-top: 10px;
  text-align: center;
  padding-bottom: 5px;
  transform: scaleY(1);
  transition: ease-in-out 0.2s;
}
@media all and (min-width: 650px) {
  nav li {
    justify-content: flex-end;
    width: 40%;
  }
}
@media all and (min-width: 980px) {
  nav li {
    border-right: 2px solid #09b674;
  }
  nav li:hover {
    padding-bottom: 10px;
    border-bottom: 2px solid #09b674;
  }
}
nav ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
  transition: all 0.3 ease;
  transform: scaleY(0);
  transform-origin: center top;
  margin-bottom: 0px;
}
@media all and (min-width: 650px) {
  nav ul {
    width: 80%;
    flex-direction: row;
    height: 80px;
  }
}
@media all and (min-width: 980px) {
  nav ul {
    width: 70%;
    flex-direction: row;
    justify-content: flex-end;
    transform: scaleY(1);
    height: 50px;
  }
}
@media all and (min-width: 1200px) {
  nav ul {
    width: 60%;
  }
}
@media all and (min-width: 1700px) {
  nav ul {
    width: 50%;
  }
}
nav ul.open {
  transform: scaleY(1);
  margin-bottom: 50px;
  height: 140px;
}
@media all and (min-width: 650px) {
  nav ul.open {
    height: 80px;
    margin-bottom: 40px;
  }
}

#presentation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (min-width: 650px) {
  #presentation {
    justify-content: space-around;
  }
}

.presentation-text {
  display: flex;
  flex-flow: column-reverse;
  align-items: center;
}
.presentation-text:hover {
  cursor: pointer;
}

.profile-photo {
  width: 150px;
  object-fit: contain;
  border-radius: 50%;
}

h1 {
  flex-wrap: wrap;
  width: 68%;
}
@media all and (min-width: 392px) {
  h1 {
    width: auto;
  }
}

.presentation-firstname {
  margin-right: 10px;
}

.presentation-hello {
  margin-right: 10px;
}
.presentation-hello:hover {
  animation: hello 0.5s ease-in-out;
}

.presentation-letter {
  display: inline-block;
}
.presentation-letter:hover {
  animation: Letter-rotate 0.5s ease-in-out;
}

.letter-vibration:hover {
  animation: letter-vibration 0.5s ease-in-out;
}

.projects-section-title {
  margin: 2%;
  border-bottom: 3px solid #09b674;
  text-shadow: 2px 1px 5px white;
  font-weight: bold;
}
@media all and (min-width: 1400px) {
  .projects-section-title {
    margin: 2% 10%;
  }
}

.projects-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0px;
  align-items: center;
}
.projects-list li {
  display: flex;
  flex-direction: column;
  border: solid 2px #09b674;
  border-radius: 3px;
  margin: 15px;
  box-shadow: 0px 0px 4px 2px #09b674;
  padding: 4px 20px 4px 20px;
}
@media all and (min-width: 900px) {
  .projects-list li {
    width: 80%;
  }
}
@media all and (min-width: 1100px) {
  .projects-list li {
    width: 60%;
  }
}
.projects-list li h3 {
  text-align: center;
  font-weight: 900;
  color: #09b674;
  text-shadow: -1px 2px 4px #09b674;
  font-size: 1.7em;
}
.projects-list li h4 {
  text-align: center;
  color: #09b674;
}
.projects-list li p {
  margin-left: 10px;
  margin-right: 10px;
}
.projects-list li small {
  text-align: center;
  color: #09b674;
  font-style: italic;
}

.projects-list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.projects-list-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7em;
  border: 1px solid #09b674;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 50%;
  text-align: center;
  background-color: black;
  box-shadow: 0px 0px 3px 1px #09b674;
  width: 130px;
  height: 30px;
  color: white;
}
@media all and (min-width: 900px) {
  .projects-list-btn a {
    margin: 15px 0px;
    font-size: 0.8em;
  }
}
.projects-list-btn a:hover {
  box-shadow: 0px 0px 6px 1px fuchsia;
  border: 1px solid fuchsia;
  cursor: pointer;
}
.projects-list-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7em;
  border: 1px solid #09b674;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 50%;
  text-align: center;
  background-color: black;
  box-shadow: 0px 0px 3px 1px #09b674;
  width: 130px;
  height: 30px;
  color: white;
}
@media all and (min-width: 900px) {
  .projects-list-btn button {
    margin: 15px 0px;
    font-size: 0.8em;
  }
}
.projects-list-btn button:hover {
  box-shadow: 0px 0px 6px 1px fuchsia;
  border: 1px solid fuchsia;
  cursor: pointer;
}
.projects-list-btn button.hidden {
  display: none;
}
.projects-list-btn button.open {
  display: flex;
}

@media all and (min-width: 900px) {
  .projects-list-btn-adjusted {
    padding: 1.5px;
    font-size: 0.85rem;
  }
}

.projects-list-listimg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.projects-list-img {
  width: 100px;
  height: 100px;
  margin: 2px;
}
@media all and (min-width: 600px) {
  .projects-list-img {
    margin: 4px;
  }
}
@media all and (min-width: 900px) {
  .projects-list-img {
    margin: 5px;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
  }
}

.projects-list-video {
  justify-content: center;
  object-fit: contain;
  margin-top: 2%;
  margin-bottom: 2%;
  transform: scaleY(0);
  transition: ease-in-out 1s;
  transform-origin: center top;
  display: none;
}
.projects-list-video video {
  object-fit: contain;
  max-width: calc(100% - 50px);
  max-height: 400px;
}
.projects-list-video.open {
  transform: scaleY(1);
  transition: ease-in-out 1s;
  display: flex;
}

.project-list-arena {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
@media all and (min-width: 650px) {
  .project-list-arena {
    max-width: 800px;
  }
}
@media all and (min-width: 1350px) {
  .project-list-arena {
    max-width: 100%;
  }
}
@media all and (min-width: 1730px) {
  .project-list-arena {
    max-width: 1200px;
    justify-content: center;
  }
}
@media all and (min-width: 2400px) {
  .project-list-arena {
    justify-content: space-around;
    align-items: center;
    max-width: 2500px;
  }
}

.arena-image {
  height: 200px;
  width: 200px;
  margin-bottom: 20px;
}
@media all and (min-width: 600px) {
  .arena-image {
    max-height: 220px;
    max-width: 220px;
    margin: 5px;
  }
}
.arena-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 2400px) {
  .arena-certificate {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.next-projects-list {
  margin: 2%;
}
@media all and (min-width: 1400px) {
  .next-projects-list {
    margin: 2% 10%;
  }
}

.hidden-btn {
  display: none;
}

.ArenaLink {
  color: #09b674;
  font-style: italic;
}

.ExternalLink {
  color: #4aaaf3;
  font-weight: bold;
}

.about {
  margin: 2%;
}
@media all and (min-width: 1400px) {
  .about {
    margin: 2% 10%;
  }
}
.about h3 {
  border-bottom: 3px solid #09b674;
  text-shadow: 2px 1px 5px white;
  font-weight: bold;
}
.about p {
  font-size: 1.1em;
  text-align: justify;
}
@media all and (min-width: 1250px) {
  .about p {
    margin-left: 3%;
    margin-right: 3%;
  }
}

footer {
  margin: 2%;
}
@media all and (min-width: 1400px) {
  footer {
    margin: 2% 10%;
  }
}
footer h3 {
  border-bottom: 3px solid #09b674;
  text-shadow: 2px 1px 5px white;
  font-weight: bold;
  text-align: center;
}
@media all and (min-width: 1600px) {
  footer h3 {
    padding-bottom: 5px;
  }
}
footer a {
  margin: 2%;
}
@media all and (min-width: 900px) {
  footer a {
    margin-right: 6%;
    margin-left: 6%;
  }
  footer a:hover {
    transform: scale(1.3);
  }
}
footer .finger-left {
  margin-right: 2%;
}
footer .finger-right {
  margin-left: 2%;
}
footer h5 {
  text-align: center;
}
footer h5:hover {
  text-decoration: fuchsia;
}

.footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 900px) {
  .footer-link {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-link-logo {
  width: 80px;
  height: 80px;
}
.footer-link-back:hover {
  color: #09b674;
  text-shadow: 1px 0px 1px;
}

#burgerLink {
  margin: 10px;
}

#burger {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: white;
  position: relative;
}
@media all and (min-width: 980px) {
  #burger {
    display: none;
  }
}
#burger::before {
  content: "";
  width: 30px;
  height: 2px;
  background: white;
  display: inline-block;
  position: absolute;
  transform-origin: center;
  transition: all 0.3 ease;
  top: -7px;
}
#burger::after {
  content: "";
  width: 30px;
  height: 2px;
  background: white;
  display: inline-block;
  position: absolute;
  transform-origin: center;
  transition: all 0.3 ease;
  top: 7px;
}
#burger.open {
  background: transparent;
}
#burger.open::before {
  transform: rotate(45deg);
  top: 0;
}
#burger.open::after {
  transform: rotate(-45deg);
  top: 0;
}

#technos img {
  width: 75px;
  height: 75px;
}
#technos li {
  margin: 25px 20px;
}

.technos-section-title {
  margin: 2%;
  border-bottom: 3px solid #09b674;
  text-shadow: 2px 1px 5px white;
  font-weight: bold;
}
@media all and (min-width: 1400px) {
  .technos-section-title {
    margin: 2% 10%;
  }
}

.technos-div-mains-title {
  text-align: center;
  margin-top: 30px;
  border: thick double #09b674;
  width: 220px;
  margin-bottom: 20px;
  color: white;
}
@media all and (min-width: 500px) {
  .technos-div-mains-title {
    width: 400px;
  }
}
@media all and (min-width: 950px) {
  .technos-div-mains-title {
    width: 450px;
  }
}
@media all and (min-width: 1800px) {
  .technos-div-mains-title {
    width: 520px;
  }
}

.technos-ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.technos-ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.technos-ul li small {
  font-style: italic;
  margin-top: 10px;
}

.technos-front-li {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.technos-front-li small {
  font-style: italic;
  margin-top: 10px;
}

.technos-subcategory-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.technos-front-subtitles {
  font-style: italic;
  width: 100px;
  border-top: thick double fuchsia;
  border-bottom: thick double fuchsia;
  text-align: center;
}
@media all and (min-width: 950px) {
  .technos-front-subtitles {
    width: 150px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
}

.hidden {
  display: none;
}

/*# sourceMappingURL=index.css.map */
