@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap";
@-webkit-keyframes responce {
  0% {
    height: 0;
  }
  100% {
    height: 3rem;
  }
}
@keyframes responce {
  0% {
    height: 0;
  }
  100% {
    height: 3rem;
  }
}
@-webkit-keyframes appear {
  0% {
    top: 0;
  }
  100% {
    top: 37%;
  }
}
@keyframes appear {
  0% {
    top: 0;
  }
  100% {
    top: 37%;
  }
}
html {
  scroll-behavior: smooth;
}

* {
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(32, 32, 32);
  color: rgb(196, 196, 196);
}

svg {
  fill: white;
}

p {
  text-align: justify;
}

header {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  top: 0;
  background-color: rgb(32, 32, 32);
  z-index: 999;
}
header #title {
  display: flex;
  align-items: center;
  margin: 1%;
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 315px;
  }
  100% {
    background-position: 315px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 315px;
  }
  100% {
    background-position: 315px;
  }
}
header #title .btn-shine {
  padding: 12px 48px;
  color: #03e9f4;
  background: linear-gradient(to right, rgb(168, 168, 168) 0, #03e9f4 10%, rgb(168, 168, 168) 20%);
  background-position: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
          animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 30px;
  text-decoration: none;
  white-space: nowrap;
}
header #title .img {
  margin-right: 10px;
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  overflow: hidden;
}
header #title .img img {
  width: 100%;
  transform: translate(0, -28%);
}
header #links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
header #links .nav_links {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
header #links .nav_links[data-visible=true] {
  display: flex;
  opacity: 1;
  transform: translateX(0%);
}
header #links a {
  position: relative;
  margin: 10px;
  padding: 5px;
  border-radius: 5px;
  color: rgb(196, 196, 196);
  text-decoration: none;
  font-size: 30px;
}
header #links a::after {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  height: 1px;
  width: 0;
  background-color: #03e9f4;
  transform: translate(-50%, -50%);
  transition: width 0.3s;
}
header #links a:hover::after {
  width: 90%;
}
header #links .mobile-nav-toggle {
  display: none;
}

.content-responce {
  position: relative;
  display: flex;
  justify-content: center;
}

.responce {
  width: 25vw;
  height: 3rem;
  padding: 3vh;
  background-color: rgba(0, 173, 0, 0.5);
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: responce;
          animation-name: responce;
}
.responce h4 {
  position: absolute;
  top: 37%;
  left: 50%;
  margin: 0;
  transform: translate(-50%);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: appear;
          animation-name: appear;
}

.error {
  background-color: rgba(200, 0, 0, 0.5);
}

.content {
  margin: 2% auto;
}
.content h1 {
  margin: 0 5%;
  font-size: 8vw;
  pointer-events: none;
}
.content p {
  margin: 2% 5%;
  margin-top: 20px;
  color: gray;
  font-size: 1.5em;
  pointer-events: none;
}
.content a {
  margin: 0 5%;
  padding: 5px;
  border-bottom: 1px solid #03e9f4;
  color: rgb(196, 196, 196);
  font-size: 1.2em;
  text-decoration: none;
  transition: border-bottom 0.2s, color 0.2s;
}
.content a:hover {
  color: #03e9f4;
  border-bottom: 1px solid rgb(196, 196, 196);
}
.content #desc {
  margin-bottom: 15vh;
}
@-webkit-keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@-webkit-keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@-webkit-keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@-webkit-keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
.content #desc .login-box {
  width: 400px;
  margin: 0 auto;
  padding: 40px;
  background: rgb(32, 32, 32);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.content #desc .login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: rgb(196, 196, 196);
  text-align: center;
}
.content #desc .login-box .form-data {
  display: flex;
}
.content #desc .login-box .user-box {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}
.content #desc .login-box .user-box input, .content #desc .login-box .user-box textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: rgb(196, 196, 196);
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.content #desc .login-box .user-box input:focus ~ label, .content #desc .login-box .user-box textarea:focus ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}
.content #desc .login-box .user-box input:valid ~ label, .content #desc .login-box .user-box textarea:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}
.content #desc .login-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: rgb(196, 196, 196);
  pointer-events: none;
  transition: 0.5s;
}
.content #desc .login-box form button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  margin-top: 40px;
  letter-spacing: 4px;
}
.content #desc .login-box button:hover {
  background: #03e9f4;
  color: grey;
  box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 0 0 100px #03e9f4;
}
.content #desc .login-box button span {
  position: absolute;
  display: block;
}
.content #desc .login-box button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  -webkit-animation: btn-anim1 1s linear infinite;
          animation: btn-anim1 1s linear infinite;
}
.content #desc .login-box button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  -webkit-animation: btn-anim2 1s linear infinite;
          animation: btn-anim2 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.content #desc .login-box button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  -webkit-animation: btn-anim3 1s linear infinite;
          animation: btn-anim3 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.content #desc .login-box button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  -webkit-animation: btn-anim4 1s linear infinite;
          animation: btn-anim4 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.content .modal {
  position: relative;
  display: flex;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.content .modal .modal-content {
  background-color: transparent;
  max-width: 400px;
  margin: auto;
  flex: 1;
}
.content .modal .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0 15px;
  font-size: 32px;
  cursor: pointer;
}
.content .modal .modal-content h2 {
  margin: 10px;
  font-size: 270%;
  text-align: center;
}
.content .modal.show {
  visibility: visible;
  opacity: 1;
}
.content h2 {
  margin: 3% 5%;
  font-size: 4em;
  pointer-events: none;
}
.content .logo {
  margin-bottom: 10vh;
  padding: 0.5vw;
  background-color: rgb(109, 109, 109);
  border-radius: 30px 30px 0 0;
  text-align: center;
  font-weight: 400;
}
.content .logo h2 {
  color: #03e9f4;
  text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #03e9f4, 0 0 0.5em #03e9f4, 0 0 0.1em #03e9f4, 0 10px 3px rgba(0, 0, 0, 0.3);
}
.content .logo h2 span {
  -webkit-animation: blink linear infinite 2s;
          animation: blink linear infinite 2s;
}
.content .logo h2 span:nth-of-type(2) {
  -webkit-animation: blink linear infinite 3s;
          animation: blink linear infinite 3s;
}
.content .sect-competences {
  max-width: 100%;
  margin: 10vh 2vw;
  padding-bottom: 5vh;
  background-color: #666;
  border-radius: 30px;
}
@-webkit-keyframes blink {
  78% {
    color: inherit;
    text-shadow: inherit;
  }
  79% {
    color: #333;
  }
  80% {
    text-shadow: none;
  }
  81% {
    color: inherit;
    text-shadow: inherit;
  }
  82% {
    color: #333;
    text-shadow: none;
  }
  83% {
    color: inherit;
    text-shadow: inherit;
  }
  92% {
    color: rgba(3, 232, 244, 0.4039215686);
    text-shadow: none;
  }
  92.5% {
    color: inherit;
    text-shadow: inherit;
  }
}
@keyframes blink {
  78% {
    color: inherit;
    text-shadow: inherit;
  }
  79% {
    color: #333;
  }
  80% {
    text-shadow: none;
  }
  81% {
    color: inherit;
    text-shadow: inherit;
  }
  82% {
    color: #333;
    text-shadow: none;
  }
  83% {
    color: inherit;
    text-shadow: inherit;
  }
  92% {
    color: rgba(3, 232, 244, 0.4039215686);
    text-shadow: none;
  }
  92.5% {
    color: inherit;
    text-shadow: inherit;
  }
}
.content .sect-competences h3 {
  margin: 2% 5%;
  text-align: center;
  font-size: 3em;
  pointer-events: none;
}
.content .sect-competences .competences {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 20px 20px 20vh 20px;
  gap: 50px 50px;
}
.content .sect-competences .competences .card .face {
  width: 300px;
  height: 200px;
  transition: 0.4s;
}
.content .sect-competences .competences .card .face.face1 {
  background: #333;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 1;
  width: 400px;
  height: 300px;
}
.content .sect-competences .competences .card .face.face1 .content {
  opacity: 0.7;
  transition: 0.5s;
  text-align: center;
  width: 25%;
}
.content .sect-competences .competences .card .face.face1 .content i {
  font-size: 3em;
  color: white;
  display: inline-block;
}
.content .sect-competences .competences .card .face.face1 .content h3 {
  font-size: 1em;
  color: white;
  text-align: center;
}
.content .sect-competences .competences .card:hover .face.face1 {
  box-shadow: inset 0 0 60px #03e9f4, inset 20px 0 80px #03e9f4, inset -20px 0 80px #03e9f4, inset 20px 0 300px #03e9f4, inset -20px 0 300px #03e9f4, 0 0 50px #fff, -10px 0 80px #03e9f4, 10px 0 80px #03e9f4;
  border-radius: 30px;
}
.content .sect-competences .competences .card:hover .face.face1 .content {
  opacity: 1;
}
.content .sect-projects {
  margin: 10vh 2vw;
  background-color: #666;
  border-radius: 30px;
}
.content .sect-projects .projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
}
.content .sect-projects .projects .box {
  width: 400px;
  height: 560px;
  position: relative;
  background: #333;
  display: inline-block;
  margin: 15vh 0;
  color: #ffffff;
  box-shadow: inset 0 0 0 10px #2c3e50;
  transition: background 0.4s 0.5s;
  text-align: center;
}
.content .sect-projects .projects .box:hover {
  background: rgba(255, 255, 255, 0);
  box-shadow: #03e9f4 0px 5px 15px;
  transition-delay: 0s;
}
.content .sect-projects .projects .box:hover h3 {
  color: #03e9f4;
  transition-delay: 0s;
}
.content .sect-projects .projects .box:hover span {
  color: #03e9f4;
  transition-delay: 0s;
}
.content .sect-projects .projects .box:hover svg line {
  stroke: #03e9f4;
  transition-delay: 0.1s;
}
.content .sect-projects .projects .box:hover svg line.top {
  transform: translateX(-700px);
}
.content .sect-projects .projects .box:hover svg line.bottom {
  transform: translateX(700px);
}
.content .sect-projects .projects .box:hover svg line.left {
  transform: translateY(1000px);
}
.content .sect-projects .projects .box:hover svg line.right {
  transform: translateY(-1000px);
}
.content .sect-projects .projects .box h3 {
  line-height: 100px;
  margin: 0;
  font-weight: 400;
  width: 100%;
  transition: color 0.4s 0.5s;
}
.content .sect-projects .projects .box span {
  display: block;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 13px;
  padding: 15px;
  transition: color 0.4s 0.5s;
}
.content .sect-projects .projects .box svg {
  position: absolute;
  top: 0;
  left: 0;
}
.content .sect-projects .projects .box svg line {
  stroke-width: 8;
  stroke: #ecf0f1;
  fill: none;
  transition: all 0.8s ease-in-out;
}
.content .sect-projects .projects .box svg line.top {
  stroke-dasharray: 430 240;
}
.content .sect-projects .projects .box svg line.bottom {
  stroke-dasharray: 430 240;
}
.content .sect-projects .projects .box svg line.left {
  stroke-dasharray: 590 400;
}
.content .sect-projects .projects .box svg line.right {
  stroke-dasharray: 590 400;
}

.mentions {
  margin: 2% 10%;
}
.mentions h1 {
  text-align: center;
}

footer {
  margin-top: 20px;
  padding: 10px;
  background-color: rgb(54, 54, 54);
}
footer .footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .footer .txt p {
  text-align: justify;
  cursor: pointer;
}
footer .footer .txt p a {
  color: white;
  transition: all 0.2s;
}
footer .footer .txt p a:hover {
  color: #03e9f4;
}
footer .footer .txt h2 {
  font-size: 2em;
  color: white;
}
footer .footer .picture {
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  overflow: hidden;
}
footer .footer .picture img {
  margin: auto;
  width: 100%;
  transform: translate(0, -28%);
}
footer p {
  color: white;
  font-size: 1.5em;
  text-align: center;
}
footer p a {
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
footer p a:hover {
  color: #03e9f4;
}

@media (max-width: 1150px) {
  p {
    text-align: left;
  }
  header {
    flex-direction: column;
  }
  header #title .btn-shine {
    padding: 0;
  }
  header #links {
    flex-direction: column;
    margin: auto;
  }
  header #links .nav_links {
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-150%);
  }
  header #links .mobile-nav-toggle {
    display: block;
    background-color: transparent;
    background-image: url("/portfolio/webroot/img/hamburger-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 5rem;
    border: 0;
    aspect-ratio: 1.5;
  }
  header #links .mobile-nav-toggle[aria-expanded=true] {
    background-image: url("/portfolio/webroot/img/close.svg");
    background-position: center;
    z-index: 99999;
  }
  .content h2 {
    font-size: 2.5em;
  }
  .content .modal .modal-content .modal-body {
    height: 60vh;
  }
  .content .modal .modal-content .modal-body form {
    flex-direction: column;
  }
  .content .modal .modal-content .modal-body form input {
    width: 60vw;
    font-size: 10px;
  }
  .content .modal .modal-content .modal-body form textarea {
    width: 60vw;
    font-size: 10px;
  }
  .content .sect-competences .competences .card .face.face1 {
    width: 300px;
    height: 200px;
  }
  .content .sect-projects .projects .box {
    width: 300px;
    height: 460px;
    box-shadow: inset 0 0 0 5px #ffffff;
  }
  .content .sect-projects .projects .box svg {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */