@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.mobile-nav {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  padding: 0.5rem 1rem;
  color: black;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(0.2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
}

.mobile-nav__logo {
  height: 100%;
  width: 2.5rem;
}

.mobile-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-nav__menu {
  width: 1rem;
  height: 0.2rem;
  background: rgba(0, 0, 0, 0.75);
  position: relative;
  cursor: pointer;
  z-index: 6;
}

.mobile-nav__menu.open {
  background: transparent;
  transition: 1s all;
}

.mobile-nav__menu.open::before {
  transform: translate(0, 0.5rem) rotate(45deg);
  transition: 1s all;
}

.mobile-nav__menu.open::after {
  transform: translate(0, -0.5rem) rotate(-45deg);
  transition: 1s all;
}

.mobile-nav__menu::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  top: -0.5rem;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  transition: 1s all;
}

.mobile-nav__menu::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  background: rgba(0, 0, 0, 0.75);
  top: 0.5rem;
  right: 0;
  transition: 1s all;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
  transition: 1s all;
}

.nav.open {
  transform: translateX(0);
  transition: 1s all;
}

.nav a {
  text-decoration: none;
  margin: 1.5rem 0;
  color: rgba(0, 0, 0, 0.75);
  font-weight: bold;
  font-size: 3rem;
  border: 1px solid transparent;
}

.nav a:hover {
  opacity: 0.75;
  transition: 1s all;
}

.nav a:first-child {
  display: none;
  width: 2.5rem;
  height: 100%;
}

.nav a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.home-sq1, .home-sq2 {
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 1;
  background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
}

.home-sq1 {
  top: 15%;
  right: 5%;
}

.home-sq2 {
  bottom: 15%;
  left: 7.5%;
  transform: rotateZ(45deg);
}

.home-glass {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.home-text {
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 0 auto;
  height: 40%;
  background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
  color: rgba(0, 0, 0, 0.75);
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.home-text span {
  color: #0f6e0f;
}

.home-titles {
  padding: 0.5rem;
  height: 2.5rem;
  width: 80%;
  margin: 0.5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.home-titles div {
  height: 30rem;
  animation: titles 12s ease-in infinite;
  transform: translateY(10rem);
}

.home-titles div h1 {
  height: 10rem;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.75);
}

@keyframes titles {
  0% {
    transform: translateY(10rem);
  }
  /*0s*/
  16.67% {
    transform: translateY(10rem);
  }
  /*2s*/
  25% {
    transform: translateY(0rem);
  }
  /*3s*/
  41.67% {
    transform: translateY(0rem);
  }
  /*5s*/
  50% {
    transform: translateY(-10rem);
  }
  /*6s*/
  66.67% {
    transform: translateY(-10rem);
  }
  /*8s*/
  75% {
    transform: translateY(0rem);
  }
  /*9s*/
  91.67% {
    transform: translateY(0rem);
  }
  /*11s*/
  100% {
    transform: translateY(10rem);
  }
  /*12s*/
}

.copyright {
  width: 100%;
  margin: 3rem 0 0.5rem 0;
  text-align: center;
}

.about {
  width: 100%;
  padding-top: 0.5rem;
}

.about-header {
  width: 95%;
  margin: 2.5rem auto 0.5rem auto;
  height: 60vh;
  display: flex;
  flex-direction: column;
}

.about-header__bg {
  width: 100%;
  flex-basis: 50%;
  background: url("../assets/about-svg.svg") center/cover no-repeat;
}

.about-header__info {
  width: 90%;
  margin: 1.5rem auto;
  text-align: center;
  line-height: 1.25;
}

.about-skills {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-skills h2 {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.about-skills__tech {
  width: 100%;
}

.about-skills__activities {
  width: 80%;
  margin: 2rem auto;
}

.about-skills__activities__container {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-skills__activities__container > div {
  border: 1px solid transparent;
  padding: 1rem 0.5rem;
  margin-top: 0.5rem;
  border-radius: 1.5rem;
}

.about-skills__activities__container i {
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0.5rem;
}

.about-skills__activities__container .counter {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  font-weight: bold;
}

.about-skills__activities__container h3 {
  margin: 0.5rem 0 0.5rem 0;
}

.wrapper {
  width: 200px;
  height: 200px;
  margin: 15% auto;
}

.box-area {
  animation: animate 10s ease-in-out infinite;
  transform-style: preserve-3d;
  transform-origin: 100px 100px 0;
  width: 200px;
  height: 200px;
  position: relative;
}

.box-area div {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 200px;
}

.box-area .box1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/html5-brands.svg");
  background-size: cover;
  background-position: center center;
  background-color: white;
  transform: translateZ(100px);
}

.box-area .box1 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.box-area .box2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/css3-alt-brands.svg");
  background-size: cover;
  background-position: center center;
  background-color: white;
  transform: rotateY(90deg) translateZ(100px);
}

.box-area .box2 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.box-area .box3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/js-brands.svg");
  background-size: cover;
  background-position: center center;
  background-color: white;
  transform: rotateY(90deg) rotateX(90deg) translateZ(100px);
}

.box-area .box3 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.box-area .box4 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/bootstrap-brands.svg");
  background-size: cover;
  background-position: center center;
  background-color: white;
  transform: rotateY(180deg) rotateZ(90deg) translateZ(100px);
}

.box-area .box4 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.box-area .box5 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/react-brands.svg");
  background-size: cover;
  background-color: white;
  background-position: center center;
  transform: rotateY(-90deg) rotateZ(90deg) translateZ(100px);
}

.box-area .box5 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.box-area .box6 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/git-alt-brands.svg");
  background-size: cover;
  background-position: center center;
  background-color: white;
  transform: rotateX(-90deg) translateZ(100px);
}

.box-area .box6 > span {
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

@keyframes animate {
  from, to {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  16% {
    transform: rotateY(-90deg);
  }
  33% {
    transform: rotateY(-90deg) rotateZ(90deg);
  }
  50% {
    transform: rotateY(-180deg) rotateZ(90deg);
  }
  66% {
    transform: rotateY(-270deg) rotateX(90deg);
  }
  83% {
    transform: rotateX(90deg);
  }
}

.projects {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.projects-title {
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  margin: 2.5rem 0;
  text-align: center;
  width: 100%;
  margin: 4.5rem 0 1.5rem 0;
  text-align: center;
  font-size: 2.5rem;
}

.projects-title .first {
  padding-bottom: 0.5rem;
  border-bottom: 5.5px solid #1CC71C;
}

.projects-title .last {
  color: #1CC71C;
  padding-bottom: 0.5rem;
  border-top: 5.5px solid black;
}

@media screen and (min-width: 768px) {
  .projects-title {
    font-size: 3.5rem;
  }
}

.projects-container {
  width: 100%;
  height: 95%;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-auto-rows: 20rem;
  padding: 0.5rem;
}

.project {
  position: relative;
  width: 100%;
}

.project::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.project:hover {
  transition: 1s all;
  opacity: 1;
}

.project:hover::after {
  transition: 1s all;
  width: 100%;
}

.project .project-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.project .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project .project-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  color: white;
  opacity: 0;
}

.project .project-info:hover {
  transition: 1s all;
  opacity: 1;
}

.project .project-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  width: 100;
  text-align: center;
}

.project .project-info .tools {
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 75%;
}

.project .project-info .tools span {
  margin: 0.5rem;
  padding: 0.5rem;
  border-radius: 1.5rem;
  background-color: rgba(0, 0, 0, 0.75);
}

.project .project-info .links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 95%;
  margin: 0.5rem auto;
  height: 2.5rem;
}

.project .project-info .links a {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  height: 100%;
  width: 50%;
  text-align: center;
  margin: 0 0.5rem;
  border-radius: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.project .project-info .links a:hover {
  transition: 1s all;
  background: white;
  color: black;
}

.project .project-info .links a i {
  margin-right: 0.5rem;
}

.contacts {
  width: 100%;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
}

.contacts-header {
  width: 100%;
  height: 20rem;
  margin: 1.5rem 0;
  background-image: url("../assets/contacts-svg.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts-header p {
  z-index: 2;
  width: 80%;
  margin: 0 auto;
  color: white;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.5em;
  border-radius: 2rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  -moz-backdrop-fiilter: blur(10px);
  backdrop-filter: blur(10px);
}

.contacts-options {
  width: 95%;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contacts-options .form {
  border-bottom: 1px solid #1CC71C;
  border-radius: 2rem;
  width: 90%;
  margin: 1.5rem auto;
  height: 20rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contacts-options .form input {
  width: 100%;
  height: 2.5rem;
  margin: 1rem 0;
  border: none;
  outline: none;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  border-bottom: 1px solid #1CC71C;
}

.contacts-options .form input:focus {
  border-bottom: 2.5px solid #1CC71C;
}

.contacts-options .form__btn {
  width: 50%;
  margin: 1.25rem auto;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  background: #1CC71C;
  color: white;
  border: 1px solid transparent;
  border-radius: 2rem;
  cursor: pointer;
}

.contacts-options .form__btn:hover {
  transition: 1s all;
  border: 1px solid #1CC71C;
  background: white;
  color: rgba(0, 0, 0, 0.75);
}

.contacts-options .form__message {
  font-size: 1rem;
  width: 100%;
  height: 50rem;
  border: 1px solid #1CC71C;
  outline: none;
  margin: 1.5rem 0;
}

.contacts-options .form__message:focus {
  outline: none;
  border: 2.5px solid #1CC71C;
}

.contacts-options .socials {
  border-top: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 2rem;
  width: 90%;
  display: flex;
  flex-direction: column;
}

.contacts-options .socials-title {
  width: 100%;
  text-align: center;
  margin: 1.5rem;
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.75);
}

.contacts-options .socials a {
  border: 1px solid transparent;
  margin-left: 15%;
}

.contacts-options .socials a i, .contacts-options .socials a span {
  text-decoration: none;
  margin: 1rem auto;
}

.contacts-options .socials a i {
  color: rgba(0, 0, 0, 0.75);
  border-right: 1px solid rgba(0, 0, 0, 0.75);
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  transform: scale(1.5);
}

.contacts-options .socials a span {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  font-size: 1.25rem;
}

.contacts-options .socials a span:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 768px) {
  .home-sq1, .home-sq2 {
    width: 250px;
    height: 250px;
  }
  .home-text {
    width: 75%;
    font-size: 3rem;
  }
  .home-titles div h1 {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .home-titles {
    width: 45%;
  }
}

@media screen and (min-width: 1440px) {
  .home-sq1, .home-sq2 {
    width: 300px;
    height: 300px;
  }
  .home-sq1 {
    top: 10%;
  }
  .home-text {
    width: 75%;
    font-size: 3.5rem;
  }
  .home-titles div h1 {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .about-header {
    flex-direction: row;
    height: 40vh;
  }
  .about-header__info {
    flex-basis: 30%;
    align-self: center;
    line-height: 1.5;
    font-size: 1.25rem;
  }
  .about-skills h2 {
    font-size: 2.5rem;
  }
  .about-skills__activities__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .about-skills__activities__container > div {
    flex-basis: 35%;
    height: 100%;
  }
  .wrapper {
    margin: 5% auto;
  }
}

@media screen and (min-width: 1024px) {
  .about-skills {
    width: 90%;
    padding-top: 3.5rem;
    flex-direction: row;
    justify-content: space-around;
  }
}

@media screen and (min-width: 768px) {
  .contacts-header {
    height: 30rem;
  }
  .contacts-header p {
    width: 50%;
  }
  .contacts-options {
    width: 70%;
  }
}

@media screen and (min-width: 1024px) {
  .contacts-header p {
    font-size: 2rem;
    width: 50%;
  }
  .contacts-options {
    width: 95%;
    flex-direction: row;
    justify-content: space-between;
    height: 25rem;
  }
  .contacts-options .form {
    margin: auto 1rem;
    height: 100%;
    border: none;
    border-right: 1px solid #1CC71C;
  }
  .contacts-options .form input {
    width: 70%;
    font-size: 1.5rem;
  }
  .contacts-options .form__message {
    width: 70%;
    font-size: 1.5rem;
  }
  .contacts-options .socials {
    margin: auto 1rem;
    border: none;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.75);
  }
  .contacts-options .socials a span {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
  .nav {
    flex-direction: row;
    justify-content: flex-end;
    transform: translateX(0);
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(0.2rem);
  }
  .nav a {
    font-size: 1.5rem;
    margin: auto 1rem;
    padding: 0.5rem;
    border: none;
  }
  .nav a:first-child {
    display: block;
    transform: scale(1.5);
    margin-right: auto;
    margin-left: 1.5rem;
  }
  .nav a:last-child {
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .projects-container {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-auto-rows: 25rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Dosis", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
  width: 100%;
  position: relative;
}

.section-title {
  width: 100%;
  margin: 4.5rem 0 1.5rem 0;
  text-align: center;
  font-size: 2.5rem;
}

.section-title .first {
  padding-bottom: 0.5rem;
  border-bottom: 5.5px solid #1CC71C;
}

.section-title .last {
  color: #1CC71C;
  padding-bottom: 0.5rem;
  border-top: 5.5px solid black;
}

@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  width: 80%;
}

::-webkit-scrollbar-thumb {
  background: #1CC71C;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0c570c;
}
/*# sourceMappingURL=main.css.map */