:root {
  --main-color: #0a192f;
  --dark-blue: #112240;
  --green: #64ffda;
  --white: #fafafa;
  --smock-white:#ccd6f6;
  --nav-shadow: rgba(2,12,27,0.7) ;
}

body {
  position: relative;
  background-color: var(--main-color);
  font-family: "Roboto", sans-serif;
  color: #ccd6f6;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

main {
  padding-top: 100px;
}

.title {
  position: relative;
  font-size: 30px;
  margin: 10px 70px 20px;
}
.title::after {
  display: none;
  content: " ";
  position: absolute;
  width: 400px;
  height: 0.01rem;
  background-color: #8892b0;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
  left: 150px;
}

.main-button {
  cursor: pointer;
  background: none;
  padding: 10px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--green);
  transition: 0.3s;
  width: max-content;
}
.main-button:hover {
  background-color: #64ffda3b;
}

[data-link] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
}
@media (max-width: 786px) {
  [data-link] {
    display: none;
  }
}
[data-link] .item-link {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: inherit;
  transition: 0.3s;
  font-size: 14px;
}
[data-link] .item-link:hover {
  color: var(--green);
}

.spinner {
  display: grid;
  place-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--dark-blue);
  z-index: 10;
  transition: 0.4s;
}

.d-none {
  opacity: 0;
  visibility: hidden;
}

.nav-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--main-color);
  z-index: 200;
  padding: 100px;
}
.nav-menu [data-links] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-around;
  align-items: center;
}
.nav-menu a {
  color: var(--green);
  font-size: 30px;
}

.container {
  padding: 15px 15px;
  padding-right: 8px;
}

@media (min-width: 450px) {
  .container {
    max-width: 400px;
    margin: auto;
  }
}
@media (min-width: 600px) {
  .container {
    max-width: 520px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}
[data-header] {
  color: var(--white);
  background-color: transparent;
  position: absolute;
  width: 100%;
}
[data-header] .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[data-header] .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
[data-header] .right [data-links] {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
@media (max-width: 786px) {
  [data-header] .right [data-links] {
    display: none;
  }
}
[data-header] .right [data-links] .item-link {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: inherit;
  transition: 0.3s;
  font-size: 14px;
}
[data-header] .right [data-links] .item-link:hover {
  color: var(--green);
}
[data-header] .right .menu {
  background: none;
  cursor: pointer;
  border: none;
  padding: 10px;
  display: block;
}
[data-header] .right .menu ion-icon {
  font-size: 30px;
  color: var(--green);
}
@media (min-width: 786px) {
  [data-header] .right .menu {
    display: none;
  }
}
[data-header] .right .resume {
  display: none;
}
@media (min-width: 786px) {
  [data-header] .right .resume {
    display: block;
  }
}

[data-hero-section] {
  max-width: 1000px;
  margin: auto;
  color: var(--white);
  min-height: calc(100vh - 100px);
}
[data-hero-section] .main-button {
  padding: 15px 25px !important;
}
[data-hero-section] .hi {
  color: var(--green);
}
[data-hero-section] .name {
  margin-top: 30px;
  font-size: clamp(40px, 8vw, 80px);
  color: #ccd6f6;
}
[data-hero-section] .doing {
  font-size: clamp(40px, 8vw, 80px);
  color: #8892b0;
}
[data-hero-section] .desc {
  margin: 20px 0px 0px;
  max-width: 540px;
  color: #ccd6f6;
  line-height: 1.7;
  opacity: 0.8;
  font-size: 18px;
}
[data-hero-section] .main-button {
  margin-top: 30px;
}

[data-about] {
  padding-block: 60px;
  max-width: 1000px;
  margin: auto;
}
[data-about] .about-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 786px) {
  [data-about] .about-wrapper {
    flex-direction: column;
  }
}
[data-about] .about-wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
@media (max-width: 786px) {
  [data-about] .about-wrapper .content {
    width: 100%;
  }
}
[data-about] .about-wrapper .content p {
  line-height: 1.6;
  color: #8892b0;
  font-size: 16px;
}
[data-about] .about-wrapper .content .skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  gap: 10px 10px;
  padding: 0px;
  margin: 20px 0px 0px;
  overflow: hidden;
  list-style: none;
}
[data-about] .about-wrapper .content .skills-list li {
  font-size: 12px;
}
[data-about] .about-wrapper .image {
  padding: 20px 40px;
}
[data-about] .about-wrapper .image figure {
  position: relative;
  border-radius: 4px;
}
[data-about] .about-wrapper .image figure img {
  position: relative;
  width: 100%;
  height: 98%;
  border-radius: 4px;
}
[data-about] .about-wrapper .image figure .overlay {
  position: absolute;
  width: 100%;
  height: 98%;
  border-radius: 4px;
  background-color: rgba(100, 255, 218, 0.5);
  z-index: 2;
  transition: 0.3s;
}
[data-about] .about-wrapper .image figure .overlay:hover {
  opacity: 0;
}
[data-about] .about-wrapper .image figure:hover::after {
  right: -10px;
  top: 10px;
}
[data-about] .about-wrapper .image figure::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  right: -20px;
  top: 20px;
  z-index: -1;
  border: 2px solid var(--green);
  border-radius: 4px;
  transition: 0.3s;
}

[data-tech] {
  text-align: center;
  padding-block: 60px;
  max-width: 1000px;
  margin: auto;
}
[data-tech] .options {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
[data-tech] .options li {
  padding: 10px 15px;
  background-color: #050d19;
  cursor: pointer;
  border-bottom: 1px solid #050d19;
}
[data-tech] .options li.selected {
  border-bottom: 1px solid var(--green);
}
[data-tech] .tech-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
[data-tech] .tech-list li {
  width: 98px;
  height: 98px;
  max-width: 98px;
  max-height: 98px;
  padding: 20px 30px;
  border-radius: 4px;
  background-color: white;
  color: var(--green);
  background-color: var(--dark-blue);
  box-shadow: 0 10px 30px -15px var(--nav-shadow);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
[data-tech] .tech-list li span {
  font-size: 12px;
}
[data-tech] .tech-list li ion-icon {
  font-size: 30px;
}
[data-tech] .tech-list li#vue:hover ion-icon, [data-tech] .tech-list li#vue:hover span {
  color: #41B883 !important;
}
[data-tech] .tech-list li#laravel:hover ion-icon, [data-tech] .tech-list li#laravel:hover span {
  color: #F05340 !important;
}
[data-tech] .tech-list li#laravel:hover ion-icon, [data-tech] .tech-list li#laravel:hover span {
  color: #F05340 !important;
}
[data-tech] .tech-list li#js:hover ion-icon, [data-tech] .tech-list li#js:hover span {
  color: #f0db4f !important;
}
[data-tech] .tech-list li#sass:hover ion-icon, [data-tech] .tech-list li#sass:hover span {
  color: #cc6699 !important;
}
[data-tech] .tech-list li#node:hover ion-icon, [data-tech] .tech-list li#node:hover span {
  color: #3BA063 !important;
}
[data-tech] .tech-list li#git:hover ion-icon, [data-tech] .tech-list li#git:hover span {
  color: var(--smock-white) !important;
}

[data-work] {
  padding-block: 60px;
  max-width: 1000px;
  margin: auto;
}
[data-work] .title::after {
  left: unset;
  right: 200px;
}
[data-work] .projects-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
[data-work] .projects-list .project {
  position: relative;
  display: flex;
  gap: 10px;
  -moz-box-align: center;
}
[data-work] .projects-list .project.rev .project-image {
  order: 2;
}
[data-work] .projects-list .project.rev .project-content {
  order: 1;
  text-align: left;
}
[data-work] .projects-list .project.rev .project-content .project-description {
  left: 0;
}
[data-work] .projects-list .project.rev .project-content .project-tech-list {
  justify-content: flex-start;
}
[data-work] .projects-list .project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: right;
  width: 40%;
  min-height: 250px;
}
[data-work] .projects-list .project-content .project-overline {
  color: var(--green);
}
[data-work] .projects-list .project-content .project-title {
  color: var(--smock-white);
  font-size: 1.5rem;
  margin-block: 0.5rem;
}
[data-work] .projects-list .project-content .project-description {
  position: absolute;
  width: 50%;
  right: 0;
  box-shadow: 0 10px 30px -15px var(--nav-shadow);
  background-color: var(--dark-blue);
  padding: 15px 15px;
  text-align: right;
  border-radius: 4px;
}
[data-work] .projects-list .project-content .project-description p {
  line-height: 1.7;
}
[data-work] .projects-list .project-content .project-tech-list {
  padding-top: 120px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
[data-work] .projects-list .project-content .project-tech-list li {
  color: #8892b0;
}
[data-work] .projects-list .project-content .project-links {
  padding-top: 15px;
}
[data-work] .projects-list .project-content .project-links ion-icon {
  color: white;
  font-size: 25px;
}
@media (max-width: 786px) {
  [data-work] .projects-list .project-content {
    text-align: left !important;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 40px !important;
  }
  [data-work] .projects-list .project-content .project-description {
    position: unset;
    background-color: unset;
    width: 100%;
    text-align: left;
    padding: 0;
    box-shadow: unset;
  }
  [data-work] .projects-list .project-content .project-tech-list {
    padding: unset;
    justify-content: flex-start;
  }
  [data-work] .projects-list .project-image {
    width: 100%;
  }
}
[data-work] .projects-list .project-image {
  box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
  border-radius: 4px;
  min-width: 60%;
  height: 350px;
  overflow: hidden;
}
[data-work] .projects-list .project-image img {
  width: 587px;
  height: 100%;
}

[data-not] {
  padding: 100px 0;
  max-width: 1000px;
  margin: auto;
}
[data-not] .title {
  text-align: center;
}
[data-not] .title::after {
  display: none;
}
[data-not] .projects-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
[data-not] .projects-holder .project {
  display: block;
  color: var(--smock-white);
  background-color: var(--dark-blue);
  padding: 30px;
  border-radius: 8px;
  transition: 0.3s;
}
[data-not] .projects-holder .project:hover {
  transform: translateY(-10px);
}
[data-not] .projects-holder .project .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[data-not] .projects-holder .project .header .icon ion-icon {
  color: var(--green) !important;
}
[data-not] .projects-holder .project .header .icon:last-child ion-icon {
  font-size: 20px;
  color: white;
}
[data-not] .projects-holder .project .project-title {
  margin-top: 30px;
  font-weight: bold;
  color: var(--smock-white);
}
[data-not] .projects-holder .project .project-desc {
  margin-top: 15px;
  color: #a8b2d1;
  line-height: 1.6;
}
[data-not] .projects-holder .project .tools {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #64708e;
}

[data-getIn] {
  padding: 100px 0;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
[data-getIn] header .title {
  font-size: 3rem;
}
[data-getIn] header .title::after {
  display: none;
}
[data-getIn] header .subtitle {
  color: var(--green);
}
[data-getIn] .desc {
  max-width: 500px;
  line-height: 1.7;
  margin: auto;
  color: #64708e;
}
[data-getIn] .main-button {
  display: block;
  margin: auto;
  margin-top: 25px;
}

[data-footer] {
  background-color: var(--dark-blue);
  color: #64ffda;
  text-align: center;
}
[data-footer] .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-footer] .container ion-icon {
  color: white !important;
}

[data-social-links] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
[data-social-links] ion-icon {
  color: white;
  font-size: 20px;
  transition: 0.3s;
}
[data-social-links] ion-icon:hover {
  color: var(--green);
}

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