/* helpers */
.wrapper {
  width: 80vw;
  max-width: 1920px;
  margin: auto;
}
@media (min-width: 2560px) {
  .wrapper {
    width: 60vw;
  }
}

.special {
  filter: invert(0);
  transition: filter 0.5s ease;
}

.load-error {
  position: absolute;
  color: #F2003c;
  padding: 1rem;
  text-align: center;
}

.logo {
  width: -moz-fit-content;
  width: fit-content;
  filter: brightness(2);
}

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

/* ::-webkit-scrollbar
 *  display: none */
html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

body {
  width: 100%;
  overflow-x: hidden;
  transition: background-color 0.8s ease, color 0.5s ease;
}

a {
  text-decoration: none;
  color: white;
}
a:not(.link-arrow, .leftArrow) {
  transition: letter-spacing 0.3s ease, text-shadow 0.3s ease;
}
a:not(.link-arrow, .leftArrow):hover {
  letter-spacing: 1px;
  text-shadow: 0px 0px 14px #74f8f4;
}

ol, ul, li {
  list-style: none;
}

section:not(#hero, #projects, #temp, #closing) {
  padding: 151px 0;
}

#bigTitle {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px;
  text-align: center;
}

#projectTitle {
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  position: absolute;
  text-shadow: 0px 1px 24px black;
  color: white;
  z-index: 1;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 26px;
}

p {
  font-style: normal;
  line-height: 1.6;
  font-size: 1rem;
}

label, .outlined-btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.text-field {
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

.outlined-btn {
  text-decoration: none;
  text-transform: uppercase;
}

.validation-error-label {
  font-family: "Share Tech", sans-serif;
  font-size: 1rem;
  color: #F2003c !important;
  letter-spacing: 0.4px;
  font-weight: 300;
}

body[data-theme=light] {
  background-color: #EFEFEF;
  color: #000;
}
body[data-theme=light] #nav-link {
  background-color: rgba(182, 182, 182, 0.3);
}
body[data-theme=light] #nav-link a {
  color: #000;
}
body[data-theme=light] .logo {
  filter: drop-shadow(0px 0px 3px rgba(16, 16, 16, 0.3));
}
body[data-theme=light] .description::before {
  background-color: rgba(255, 255, 255, 0.5);
}
body[data-theme=light] .text-field {
  color: #000;
}
body[data-theme=light] .text-field:focus {
  border-color: rgba(16, 16, 16, 0.8431372549);
}
body[data-theme=light] footer {
  box-shadow: 0rem 1rem 5rem #000;
}
body[data-theme=light] footer a {
  color: #000;
}
body[data-theme=light] .closeIcon {
  border-radius: 13px;
  background: aliceblue;
}

body[data-theme=dark] {
  background-color: #101010;
  color: white;
}
body[data-theme=dark] #nav-link {
  background-color: rgba(16, 16, 16, 0.3);
}
body[data-theme=dark] #nav-link a {
  color: white;
}
body[data-theme=dark] .logo {
  filter: drop-shadow(0px 0px -1px rgba(16, 16, 16, 0.3));
}
body[data-theme=dark] .description::before {
  background-color: rgba(0, 0, 0, 0.5);
}
body[data-theme=dark] .text-field {
  color: white;
}
body[data-theme=dark] .text-field:focus {
  border-color: rgba(239, 239, 239, 0.8549019608);
}
body[data-theme=dark] footer {
  box-shadow: 0rem 1rem 5rem #EFEFEF;
}
body[data-theme=dark] footer a {
  color: white;
}
body[data-theme=dark] .closeIcon {
  border-radius: 13px;
  background: transparent;
}

#burgerM {
  width: 43px;
  height: 27px;
  position: fixed;
  cursor: pointer;
  z-index: 10;
  right: 20px;
  top: 20px;
}
#burgerM span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
#burgerM span:nth-child(1) {
  top: 0;
}
#burgerM span:nth-child(2) {
  top: 11px;
}
#burgerM span:nth-child(3) {
  top: 23px;
}
#burgerM.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
#burgerM.open span:nth-child(2) {
  opacity: 0;
}
#burgerM.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

#nav-link {
  width: 100%;
  position: fixed;
  z-index: 3;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(45deg, rgb(16, 16, 16), rgb(219, 219, 219), rgb(16, 16, 16)) 1;
     border-image: linear-gradient(45deg, rgb(16, 16, 16), rgb(219, 219, 219), rgb(16, 16, 16)) 1;
  border-image-slice: 1;
  opacity: 0;
  padding: 0rem 10vw;
  visibility: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#nav-link div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
}
@media (min-width: 768px) {
  #nav-link div {
    flex-direction: row;
  }
}
#nav-link .logo {
  transform: scale(0.2);
  transform-origin: center;
  transition: transform 0.5s ease;
}
#nav-link ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
}
@media (min-width: 768px) {
  #nav-link ul {
    flex-direction: row;
  }
}
#nav-link ul a {
  padding: 0;
}
@media (min-width: 768px) {
  #nav-link ul a {
    padding: 25px;
  }
}
#nav-link ul li:nth-child(3) > a:nth-child(1) {
  padding-right: 0;
}
#nav-link.isClicked {
  opacity: 1;
  padding: 0.7rem 10vw;
  visibility: visible;
}
#nav-link.isClicked .logo {
  transform: scale(0.9);
}

.dark-light-mode {
  width: 100%;
  height: 82px;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dark-light-mode .neoBar {
  gap: 16px;
  display: flex;
  background-color: rgba(182, 182, 182, 0.1294117647);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  filter: noise(5);
  border-radius: 2rem;
  padding: 8px 5%;
  box-shadow: 5px 3px 6px 0px rgba(18, 21, 22, 0.6), inset 1px 1px 1px 0px rgba(255, 255, 255, 0.5);
}
.dark-light-mode .neoBar img {
  filter: drop-shadow(1px 0px 4px black);
}
.dark-light-mode .neoBar .switch {
  width: 60px;
  height: 30px;
  border-radius: 2rem;
  padding: 3px;
  background-color: rgb(87, 79, 79);
  box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 22.0625px 0.125px inset, rgba(0, 0, 0, 0.8) 0px 0.0625px 5.125px inset, rgb(255, 255, 255) 0px 0px 3px -1px;
  cursor: pointer;
  overflow: hidden;
}
.dark-light-mode .neoBar .switch .button {
  width: 50%;
  height: 100%;
  border-radius: 2rem;
  box-shadow: 5px 5px 10px #141414, -5px -5px 10px #282828, inset 1px 2px 2px 1px white, inset -1px -1px 3px 0px #101010;
  background-color: rgb(212, 212, 212);
  transform: translateX(0px);
}
.dark-light-mode .neoBar .switch .button:hover {
  background-color: grey;
}

#loaderPage {
  width: 100%;
  height: 100vh;
  background: #101010;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
#loaderPage .loader {
  display: block;
  width: 55px;
  height: 55px;
  aspect-ratio: 1;
  background: conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from 90deg at top 3px left 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0), conic-gradient(from -90deg at bottom 3px right 3px, transparent 90deg, #fff 0);
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  animation: l11 1.5s infinite;
}

@keyframes l11 {
  0% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
  25% {
    background-size: 35px 35px, 15px 35px, 15px 15px, 35px 15px;
  }
  50% {
    background-size: 15px 35px, 35px 35px, 35px 15px, 15px 15px;
  }
  75% {
    background-size: 15px 15px, 35px 15px, 35px 35px, 15px 35px;
  }
  100% {
    background-size: 35px 15px, 15px 15px, 15px 35px, 35px 35px;
  }
}
/*------ HERO SECTION ------- */
#hero {
  height: 100svh;
  width: 100%;
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  position: fixed;
}
@media (min-width: 1024px) {
  #hero {
    height: 100vh;
  }
}
#hero #hero-background {
  height: 100svh;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  opacity: 0.5;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  #hero #hero-background {
    height: 100vh;
  }
}
#hero p {
  text-align: center;
  padding: 20px;
}
#hero .hero-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hero #social {
  display: none;
  flex-wrap: nowrap;
  width: 50%;
  align-items: center;
  flex-direction: row-reverse;
  position: absolute;
  bottom: 50px;
  right: 0;
  gap: 40px;
}
#hero #social a > img {
  width: 32px;
  transition: all 0.3s ease;
}
#hero #social a > img:hover {
  transform: scale(1.2);
}
#hero #social #hero-line {
  width: 36%;
  height: 2px;
  background-color: white;
}
@media (min-width: 768px) {
  #hero #social {
    display: flex;
  }
}

#projects-shortcut {
  width: 100px;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translateY(120%);
}
@media (min-width: 768px) {
  #projects-shortcut {
    transform: translateY(100%);
  }
}
@media (hover: hover) and (pointer: fine) {
  #projects-shortcut:hover .square {
    transform: translateY(60px) rotate(90deg);
    border: none;
    background-color: white;
    border-radius: 100%;
    height: 31px;
  }
  #projects-shortcut:hover .lineDownArrow {
    transform: scaleY(0);
    bottom: -45px;
  }
  #projects-shortcut:hover img {
    width: 70px;
  }
}

.square {
  width: 31px;
  height: 46px;
  border: 1px solid white;
  margin-top: 22px;
  transform: translateY(0px) rotate(0);
  background-color: transparent;
  border-radius: 0;
  transition: background-color, transform 0.5s ease, border-radius 0.5s ease-out, height 0.8s ease;
}

.downArrow {
  width: 31px;
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.downArrow .lineDownArrow {
  width: 2.5px;
  height: 54px;
  background-color: white;
  position: relative;
  bottom: -25px;
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 0.5s ease, bottom 0.5s ease;
}
.downArrow img {
  width: 38px;
  transition: width 0.5s ease;
}

/* #navigation
 *  display: flex
 *  flex-direction: column
 *  justify-content: space-between
 *  align-items: center
 *  position: fixed
 *  right: 10px
 *  height: 55vh
 *  z-index: 100
 *
 *  #arrows
 *      display: none
 *      flex-direction: column 
 *      */
#sections-container {
  position: relative;
  top: 100vh;
  z-index: 2;
  background-color: inherit;
}

/*------ SKILLS SECTION ------- */
#skills {
  overflow: clip;
}

.skills-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#skills-text {
  margin-bottom: 68px;
}
#skills-text p {
  text-wrap: balance;
  max-width: 600px;
}

#skills-list {
  width: 102vw;
  min-height: 200px;
  display: flex;
  align-self: center;
  background-color: #181818;
  box-shadow: inset 0px 0px 5px #EFEFEF;
  align-items: center;
  margin-bottom: 166px;
  position: relative;
}
#skills-list::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(42, 123, 155, 0) 90%, rgb(24, 24, 24) 100%), linear-gradient(to left, rgba(42, 123, 155, 0) 90%, rgb(24, 24, 24) 100%);
}
#skills-list .iconGroup {
  display: flex;
  gap: 7vw;
  padding-right: 3rem;
  will-change: transform;
  animation: scrolling 20s linear infinite;
}
#skills-list .iconGroup .icon {
  height: 3em;
  width: 3em;
}

/*         .icon-html
 *          fill: #d15502
 *      .icon-css3
 *          fill: #025cd1
 *      .icon-sass
 *          fill: #F03D70
 *      .icon-tailwind
 *          fill: #44A8B3
 *      .icon-bootstrap
 *          fill: #7E57C2
 *      .icon-js
 *          fill: #ffd000
 *      .icon-ts
 *          fill: #0288D1
 *      .icon-react
 *          fill: #26A2C1 */
/*------ PROJECTS SECTION ------- */
#container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 77% 45%;
     object-position: 77% 45%;
}
@media (min-width: 1024px) {
  #container {
    flex-direction: row;
  }
}
#container .project {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: auto;
  transition: none;
}
#container .project .description {
  position: absolute;
  text-align: center;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: none;
}
#container .project .description::before {
  content: "";
  width: 116%;
  height: 116%;
  inset: -8%;
  position: absolute;
  z-index: -1;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  #container .project .description {
    opacity: 0;
    transform: translateX(100%) scale(1);
    transition: 0.5s ease-in-out;
  }
}
@media (min-width: 1024px) {
  #container .project {
    width: 25vw;
    height: 100vh;
    transition: width 0.5s ease;
    cursor: pointer;
  }
  #container .project:hover {
    width: 40%;
  }
  #container .project:hover .description {
    opacity: 1;
    transform: translateX(0) scale(1.2);
  }
}

/*------ CONTACT SECTION ------- */
.contact-wrapper {
  gap: 50px;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .contact-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

#contact-text {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#contact-text p:nth-child(3) {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #contact-text {
    max-width: 500px;
  }
}

.half-div {
  width: 100%;
}
@media (min-width: 1440px) {
  .half-div {
    width: 50%;
  }
}
.half-div p {
  margin-bottom: 46px;
}

textarea {
  resize: vertical;
  max-width: 100%;
  min-height: 150px;
}

label {
  display: block;
  margin-bottom: 8px;
}

.text-field {
  width: 100%;
  padding: 8px;
  border-style: none none solid;
  border-width: 2px;
  border-color: #a1a1a1;
  border-radius: 0;
  background-color: transparent;
  outline: none;
}

.outlined-btn {
  padding: 8px 24px;
  border: 1.5px solid #fff;
  border-radius: 0;
  background-color: #101010;
  color: #fff;
  cursor: pointer;
  transition: filter 0.5s ease;
  filter: invert(0);
}
.outlined-btn:hover {
  filter: invert(1);
}

.control-wrapper {
  margin-bottom: 48px;
}

.is-valid {
  border-color: #57d6c5;
}
.is-valid:focus {
  border-color: #aafff4;
}

.is-invalid {
  border-color: #F2003c;
}
.is-invalid:focus {
  border-color: #ff5c84;
}

.g-recaptcha {
  margin-bottom: 48px;
}

/*------ FOOTER ------- */
footer {
  width: 100%;
  padding: 0.9rem 10vw;
  box-shadow: 0rem 1rem 5rem #EFEFEF;
}
footer div {
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  footer div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
footer div img {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  footer div img {
    padding-bottom: 0;
  }
}
footer div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  footer div ul {
    flex-direction: row;
  }
}
footer div ul a {
  padding: 25px;
}
footer div ul li:nth-child(3) > a:nth-child(1) {
  padding-right: 0;
}/*# sourceMappingURL=style.css.map */