body {
  width: 70%;
  float: right;
  transition: 0.5s;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: linear-gradient(-20deg, #191834, #2b2c68, #338aca, #338aca, #191834, #2b2c68);
}

@media (max-width: 787px) {
  body {
    background-image: linear-gradient(3deg, #191834, #2b2c68, #5b146f, #338aca, #5b146f, #2b2c68, #338aca);
  }
  .header .my-name .name {
    font-size: 35px;
    margin-bottom: 10px;
  }
}
.show {
  transform: translateX(0%);
}

.header {
  cursor: none;
  color: #09fbff;
}
.header .open-btn {
  transition: 0.5s;
  z-index: 11111111;
  position: fixed;
  top: 20px;
  left: 5%;
  background-image: linear-gradient(-20deg, #191834, #2b2c68);
  box-shadow: 3px 4px 0 #338aca;
  padding: 12px 10px;
  border-radius: 5px;
  transform: rotate(45deg);
}
@media (max-width: 787px) {
  .header .open-btn {
    left: 9%;
  }
}
.header .open-btn div {
  transform: rotate(-45deg);
}
.header .open-btn div span {
  display: block;
  width: 25px;
  height: 4px;
  background-color: white;
  margin-bottom: 4px;
}
.header .open-btn div span:last-child {
  margin-bottom: 0px;
}
.header nav {
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0%;
  transition: 0.5s;
  width: 30%;
  background-color: #2b2c68;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.5s;
}
@media (min-width: 787px) {
  .header nav {
    box-shadow: 0 0 40px #2b2c68;
  }
}
.header nav .nav-bar {
  height: 100vh;
  align-content: center;
  width: 100%;
}
.header nav .nav-bar .close-btn {
  transition: 0.5s;
  position: absolute;
  border-radius: 5px;
  top: 20px;
  right: 20px;
  background-image: linear-gradient(-20deg, #338aca, #26b7cd);
  box-shadow: 3px 4px 0 #191834;
  padding: 16px 6px;
  transform: rotate(45deg);
}
@media (max-width: 787px) {
  .header nav .nav-bar .close-btn {
    right: 9%;
  }
}
.header nav .nav-bar .close-btn div {
  transform: rotate(-45deg);
}
.header nav .nav-bar .close-btn div span {
  display: block;
  width: 24px;
  height: 4px;
  background-color: white;
}
.header nav .nav-bar .close-btn div span:first-child {
  margin-bottom: -4px;
  transform: rotate(45deg);
}
.header nav .nav-bar .close-btn div span:last-child {
  transform: rotate(-45deg);
}
.header nav .nav-bar ul {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.header nav .nav-bar ul li {
  transition: 0.5s;
  box-shadow: 0 0 40px #2b2c68;
  width: 97%;
  padding: 10px;
  padding-left: 20px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 787px) {
  .header nav .nav-bar ul li {
    padding-left: 5px;
  }
}
.header nav .nav-bar ul li a {
  color: white;
  position: relative;
  padding: 2px 5px;
  padding-bottom: 5px;
}
.header nav .nav-bar ul li a div {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 0;
  height: 5px;
  background-color: transparent;
  transition: 0.5s;
  margin-right: 20px;
  text-align: center;
}
.header nav .nav-bar ul li a:hover {
  transition: 0.5s;
}
.header nav .nav-bar ul li a:hover div {
  background-color: #09fbff;
  animation: anime 0.8s 1 ease;
  height: 3px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 90%;
}
.header nav .nav-bar ul li a .scroll-animation {
  background-color: #09fbff;
  animation: anime 0.8s 1 ease;
  height: 3px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 90%;
}
@keyframes anime {
  0% {
    height: 10px;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 10px;
  }
}
.header .content .container {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .content .container .icons {
  margin-bottom: 15px;
  margin-top: -43px;
}
.header .content .container .icons img {
  padding: 2px;
  background-color: white;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .header .content .container .icons {
    margin-top: 0;
  }
}

.introdaction {
  padding: 50px 0;
}
.introdaction .container {
  width: 90%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 787px) {
  .introdaction .container {
    width: 95%;
  }
}
.introdaction .container .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 20px;
}
@media (max-width: 767px) {
  .introdaction .container .content {
    display: flex;
    flex-direction: column;
  }
}
.introdaction .container .content h1 {
  position: absolute;
  top: -20px;
  color: #09fbff;
}
.introdaction .container .content .box {
  position: relative;
  border-radius: 20px;
  background-color: #191834;
  padding: 15px;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.introdaction .container .content .box.introduce-me {
  grid-column: 1/span 2;
}
.introdaction .container .content .box.introduce-me span {
  gap: 30px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.introdaction .container .content .box.introduce-me span img {
  width: 30%;
}
.introdaction .container .content .box.my-infos .mp:not(.mp:last-child) {
  margin-bottom: 20px;
}
.introdaction .container .content .box.my-infos .mp {
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 10px;
}
.introdaction .container .content .box.my-infos .mp img {
  width: 30px;
}
.introdaction .container .content .box.edu-me p:not(p:last-child),
.introdaction .container .content .box.edu-me h4 {
  margin-bottom: 15px;
}
.introdaction .container .content .box.skills {
  padding: 30px;
  grid-column: 3/span 2;
  grid-row: 1/3;
}
.introdaction .container .content .box.skills .skill:not(.skill:last-child) {
  margin-bottom: 50px;
}
.introdaction .container .content .box.skills .skill {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.introdaction .container .content .box.skills .skill h4 {
  margin-right: 20px;
}
.introdaction .container .content .box.skills .skill .timeLine {
  background-color: white;
  width: 100%;
  height: 10px;
  position: relative;
}
.introdaction .container .content .box.skills .skill .timeLine .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  background-color: #09fbff;
  height: 100%;
}

.projects-page {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
.projects-page .container {
  width: 90%;
}
@media (max-width: 787px) {
  .projects-page .container {
    width: 95%;
  }
}
.projects-page .container .title-filter-bar {
  margin-bottom: 20px;
}
.projects-page .container .title-filter-bar .filter-bar {
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
}
@media (max-width: 767px) {
  .projects-page .container .title-filter-bar .filter-bar button {
    width: 49%;
  }
}
.projects-page .container .projects .boxes {
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.75%;
}
.projects-page .container .projects .boxes .box {
  box-shadow: #191834 0 0 25px;
  width: 49%;
  transition: 0.5s;
  margin-bottom: 1.75%;
  background-color: #191834;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #191834;
  color: #09fbff;
}
.projects-page .container .projects .boxes .box:hover .pro-img {
  filter: blur(10px);
  transform: scale(1.3);
}
@media (max-width: 787px) {
  .projects-page .container .projects .boxes .box {
    width: 100%;
    margin-bottom: 10px;
  }
}
.projects-page .container .projects .boxes .box .img {
  background-color: #191834;
  padding: 10px;
  overflow: hidden;
  position: relative;
}
.projects-page .container .projects .boxes .box .img img {
  border-radius: 10px;
  width: 100%;
  transition: 0.5s;
}
.projects-page .container .projects .boxes .box .img .git {
  position: absolute;
  top: 55%;
  right: 10%;
  transform: translate(50%, -50%);
  transition: 0.5s;
}
.projects-page .container .projects .boxes .box .img .git img {
  width: 50px;
  height: 50px;
  background-color: white;
  padding: 5px;
}
.projects-page .container .projects .boxes .box .project-infos {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 10px 15px;
  color: white;
}
.projects-page .container .projects .boxes .box .project-infos .tools {
  margin-top: 10px;
  font-size: 12px;
  color: #5b146f;
  font-weight: bold;
  font-weight: 16px;
  padding: 5px 5px;
  border-radius: 5px;
  margin-left: -5px;
}
.projects-page .container .projects .boxes .box .project-infos .open-project-btn img {
  width: 40px;
}

.contact-page .container {
  width: 90%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
}
@media (max-width: 767px) {
  .contact-page .container {
    width: 95%;
    flex-direction: column;
    gap: 10px;
  }
}
.contact-page .container form {
  width: 40%;
}
.contact-page .container form input,
.contact-page .container form textarea {
  position: relative;
  padding: 10px 20px;
  margin-top: 10px;
  width: 100%;
  border: 0;
  outline: 0px;
  transition: 0.5s ease;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  color: #09fbff;
}
.contact-page .container form input:hover,
.contact-page .container form textarea:hover {
  box-shadow: 0 0 10px #191834;
}
.contact-page .container form #label {
  color: white;
  transform: translateY(5%);
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact-page .container form {
    width: 100%;
  }
}

.hide {
  display: none;
}

.active {
  background-color: #191834;
  color: white;
  box-shadow: 0 4px 0 #191834;
}

button {
  overflow: hidden;
  position: relative;
  background-color: #09fbff;
  padding: 15px 20px;
  border-radius: 5px;
  border: 0;
  color: #191834;
  overflow: hidden;
  transition: 1s;
  box-shadow: 0 4px 0 #191834;
  font-weight: bold;
  cursor: none;
}
button::after {
  transition: 0.8s;
  position: absolute;
  top: 0;
  right: -100%;
  width: 10%;
  height: 100%;
  content: "";
  transform: skew(20deg);
}
button:hover {
  color: #09fbff;
  box-shadow: 0 4px 0 #191834;
  background-color: #191834;
}
button:hover::after {
  background-color: #09fbff;
  width: 50%;
  right: 150%;
}

.title,
.my-name {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s ease;
  padding: 0;
}
@media (max-width: 787px) {
  .title,
  .my-name {
    margin-bottom: 25px;
  }
}
.title h1,
.my-name h1 {
  font-size: 60px;
  text-align: center;
  -webkit-text-stroke: 1px transparent;
  background-image: linear-gradient(to right, #09fbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .title h1,
  .my-name h1 {
    font-size: 45px;
  }
}
.title span,
.my-name span {
  color: white;
  text-shadow: 0 0 5px #191834;
  font-weight: bold;
  font-size: 21px;
  transform: translateY(-30px);
}
@media (max-width: 767px) {
  .title span,
  .my-name span {
    font-size: 18px;
    transform: translateY(-24px);
  }
}
.title .my-career,
.my-name .my-career {
  font-size: 50px;
  transform: translateY(-45px);
}
@media (max-width: 790px) {
  .title .my-career,
  .my-name .my-career {
    font-size: 25px;
    transform: translateY(0);
  }
}

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

::-webkit-scrollbar-track {
  background-color: #09fbff;
}

::-webkit-scrollbar-thumb {
  background-color: #191834;
  border-radius: 20px;
}

::-moz-selection {
  background-color: #09fbff;
  color: white;
}

::selection {
  background-color: #09fbff;
  color: white;
}

.mouse {
  width: 20px;
  height: 20px;
  background-color: #09fbff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11111111111111110000;
  border-radius: 100%;
  scroll-behavior: smooth;
  pointer-events: none;
  box-shadow: 0 0 10px #191834;
}/*# sourceMappingURL=main.css.map */