body {
  background-color: #0f0f0f;
  color: #f0f0f0;
  font-family: Consolas, "Courier New", monospace;
  position: relative;
}

.loaderBox {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #0f0f0f;
  z-index: 99;
  animation-name: introWeb;
  animation-duration: 500ms;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
.loaderBox .loader {
  width: 40px;
  aspect-ratio: 1;
  color: #f0f0f0;
  position: relative;
  background: radial-gradient(10px, currentColor 94%, rgba(0, 0, 0, 0));
}
.loaderBox .loader:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(9px at bottom right, rgba(0, 0, 0, 0) 94%, currentColor) top left, radial-gradient(9px at bottom left, rgba(0, 0, 0, 0) 94%, currentColor) top right, radial-gradient(9px at top right, rgba(0, 0, 0, 0) 94%, currentColor) bottom left, radial-gradient(9px at top left, rgba(0, 0, 0, 0) 94%, currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}
@keyframes l18 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

@keyframes introWeb {
  99% {
    z-index: 99;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
#menu {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  background-color: #0f0f0f;
}
#menu ul {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  padding-left: 0px;
}
#menu ul li {
  width: 145px;
  font-size: 12;
  opacity: 40%;
  list-style: none;
  text-align: center;
  transition: all 300ms;
  cursor: pointer;
}
#menu ul li:hover,
#menu ul .activeMenuItem {
  transform: scale(1.2);
  opacity: 1;
  font-size: 16px;
}

#buttonsContact {
  position: fixed;
  top: 10px;
  right: 10px;
}
#buttonsContact a {
  text-decoration: none;
  color: #f0f0f0;
}
#buttonsContact a i {
  font-size: 30px;
  opacity: 0.7;
  transition: all 300ms;
}
#buttonsContact a:hover i {
  opacity: 1;
}

.separadorSection {
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 37px;
}
.separadorSection hr {
  width: 50%;
}

.titleBox {
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1PX solid #f0f0f0;
  margin-bottom: 30px;
}
.titleBox h2 span {
  opacity: 0.6;
  font-size: 23px;
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
#about #imgAbout {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}
#about #imgAbout img {
  width: 100%;
  max-width: 340px;
}
#about #textAbout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
}
#about #textAbout h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
#about #textAbout p {
  font-size: 24px;
  text-align: center;
}
#about #textAbout button {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  background-color: transparent;
  border-color: #f0f0f0;
  color: #f0f0f0;
  opacity: 0.5;
  transition: all 300ms;
}
#about #textAbout button:hover {
  opacity: 1;
}

#works {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  align-content: start;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
}
#works .worksBox {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
}
#works .worksBox .work {
  width: 300px;
  height: 150px;
  position: relative;
  cursor: pointer;
}
#works .worksBox .work img {
  height: 100%;
  width: 100%;
  border-radius: 14px;
  opacity: 0.4;
  border: 2px solid;
  transition: all 300ms;
}
#works .worksBox .work span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  font-size: 30px;
  text-align: center;
}
#works .worksBox .work:hover img {
  opacity: 0.8;
}
#works .worksBox:first-child {
  margin-bottom: 70px;
  margin-top: 60px;
}
#works #infoWorkPopUp {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 15, 15, 0.6352941176);
  z-index: 99;
}
#works #infoWorkPopUp #infoWorkBox {
  width: 420px;
  height: 80%;
  max-height: 600px;
  padding: 20px;
  background-color: #0f0f0f;
  box-shadow: 1px 0px 2px 0px #f0f0f0;
  border-radius: 11px;
}
#works #infoWorkPopUp #infoWorkBox #closePopUpWorkBox {
  display: flex;
  justify-content: end;
  height: 24px;
}
#works #infoWorkPopUp #infoWorkBox #closePopUpWorkBox #closePopUpWork {
  cursor: pointer;
  opacity: 0.5;
  transition: all 300ms;
}
#works #infoWorkPopUp #infoWorkBox #closePopUpWorkBox #closePopUpWork:hover {
  opacity: 1;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp {
  width: 100%;
  height: calc(100% - 24px);
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp h3 {
  width: 100%;
  height: 40px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: 1PX solid #f0f0f0;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp #workDescription {
  width: 100%;
  height: calc(100% - 128px);
  overflow-y: auto;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 34px;
  margin-top: 10px;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp span img {
  width: 30px;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp #buttonBox {
  display: flex;
  justify-content: center;
  height: 24px;
  margin-top: 10px;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp #buttonBox a {
  color: #f0f0f0;
  text-decoration: none;
  opacity: 0.5;
  transform-origin: center;
  transition: all 300ms;
}
#works #infoWorkPopUp #infoWorkBox #contentWorkPopUp #buttonBox a:hover {
  opacity: 1;
  transform: scale(1.2);
}
#works .infoWorkPopUpShow {
  display: flex !important;
}

#studies {
  display: flex;
  justify-content: center;
  align-items: start;
  align-content: start;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
}
#studies .studiesBox {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  margin-bottom: 35px;
}
#studies .studiesBox .titleBox {
  margin-bottom: 10px;
}
#studies .studiesBox .textStudieBox {
  display: flex;
  align-items: center;
  width: 100%;
}
#studies .studiesBox .textStudieBox img {
  width: 35px;
  height: 100%;
  max-height: 50px;
  margin-right: 20px;
}
#studies .studiesBox .textStudieBox .infoStudie {
  width: calc(100% - 30px);
  margin-bottom: 0px;
  font-size: 18px;
}
#studies .studiesBox .textStudieBox .infoStudie span {
  font-weight: 800;
  font-size: 22px;
}
#studies .studiesBox .textStudieBox .infoStudie p {
  opacity: 0.8;
  margin-bottom: 0px;
}
#studies .studiesBox .toolBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#studies .studiesBox .toolBox img {
  width: 40px;
}
#studies .studiesBox .toolBox span {
  width: 90px;
  margin-left: 10px;
  background-color: #0f0f0f;
  text-align: center;
}
#studies .studiesBox:first-child {
  margin-top: 50px;
}

footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

@media (max-width: 1280px) {
  .titleBox {
    margin-bottom: 10px;
  }
  .titleBox h2 {
    font-size: 20px;
  }
  .titleBox h2 span {
    font-size: 14px;
  }
  .separadorSection {
    font-size: 20px;
  }
  #about #imgAbout img {
    max-width: 190px;
  }
  #about #textAbout h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  #about #textAbout p {
    font-size: 17px;
    text-align: center;
  }
  #works {
    margin-bottom: 80px;
  }
  #works .worksBox .work {
    width: 250px;
    height: 125px;
  }
  #works .worksBox:first-child {
    margin-top: 0;
    margin-bottom: 40px;
  }
  #works #infoWorkPopUp #infoWorkBox {
    max-height: 550px;
  }
  #works #infoWorkPopUp #infoWorkBox #contentWorkPopUp #workDescription {
    max-height: 350px;
  }
  #studies {
    padding-bottom: 40px;
  }
  #studies .studiesBox {
    justify-content: center;
  }
  #studies .studiesBox .textStudieBox img {
    max-height: 40px;
  }
  #studies .studiesBox .textStudieBox .infoStudie span {
    font-size: 16px;
  }
  #studies .studiesBox .textStudieBox .infoStudie p {
    font-size: 14px;
  }
  #studies .studiesBox:first-child {
    margin-top: 0;
  }
}
@media (max-width: 1030px) {
  #about {
    align-content: center;
    flex-wrap: wrap;
  }
  #about #imgAbout {
    width: 100%;
    margin-bottom: 35px;
  }
  #about #imgAbout img {
    max-width: 300px;
  }
  #about #textAbout {
    width: 90%;
  }
  #works .worksBox {
    justify-content: center;
  }
}
@media (max-width: 660px) {
  #about {
    padding-top: 90px;
  }
  #buttonsContact {
    top: auto;
    bottom: 10px;
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */