@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@keyframes floatDots {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(var(--x), var(--y));
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes spinLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1;
  min-height: 100dvh;
  background-color: #121725;
  font-family: "Inter", sans-serif;
  color: white;
  display: grid;
  grid-template-rows: 105px auto;
  grid-template-columns: 1fr;
}

header {
  height: 70px;
}

main {
  flex: 1;
  grid-area: 2/1/2/1;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

header {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) auto minmax(auto, 1fr);
  justify-items: center;
  align-items: center;
  position: fixed;
  top: 35px;
  left: 10%;
  right: 10%;
  z-index: 999;
}
@media (max-width: 480px) {
  header {
    left: 5%;
    right: 5%;
    height: 56px;
  }
}
header .language-toggle {
  justify-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
header .language-toggle .lang-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
@media (max-width: 480px) {
  header .language-toggle .lang-option {
    padding: 0.5rem;
  }
}
header .language-toggle .lang-option.selected {
  border-bottom: 4px solid white;
}
@media (max-width: 480px) {
  header .language-toggle .lang-option:not(.responsive) {
    display: none;
  }
}
header .language-toggle .lang-option.responsive {
  display: none;
}
@media (max-width: 480px) {
  header .language-toggle .lang-option.responsive {
    display: flex;
    font-size: 0.9rem;
    padding: 0.3rem;
  }
}
header .language-toggle .lang-option:not(.selected) {
  color: #a4aabb;
  transition: color 0.4s;
}
header .language-toggle .lang-option:not(.selected):hover {
  color: #5978e2;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  background: #080b1d;
  padding: 0.4rem;
  border-radius: 99rem;
  border: 1px solid #232d6b;
}
header nav .filter {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  margin-left: 0.5rem;
}
header nav .filter .filter-btn {
  aspect-ratio: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background: #131839;
  border: 1px solid #232d6b;
  border-radius: calc((70px - 0.8rem) / 2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
header nav .filter .filter-btn.clicked {
  border-radius: calc((70px - 0.8rem) / 2) calc((70px - 0.8rem) / 2) 0 0;
  border-bottom: 0;
}
header nav .filter .filter-content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  display: none;
  background: #131839;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 1.3rem;
  gap: 1rem;
  border-radius: calc((70px - 0.8rem) / 2 / 2) 0 calc((70px - 0.8rem) / 2 / 2) calc((70px - 0.8rem) / 2 / 2);
  border: 1px solid #232d6b;
}
header nav .filter .filter-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  background: #131839;
  width: calc(70px - 1rem);
  height: 1px;
}
header nav .filter .filter-content input[type=radio], header nav .filter .filter-content .contact-me-main .contact-container form button[type=radio], .contact-me-main .contact-container form header nav .filter .filter-content button[type=radio], header nav .filter .filter-content .contact-me-main .contact-container form textarea[type=radio], .contact-me-main .contact-container form header nav .filter .filter-content textarea[type=radio] {
  border-radius: 50%;
  height: 0.6rem;
  outline: 2px solid #f6f6f6;
  outline-offset: 3px;
  background: #f6f6f6;
  margin-left: 3px;
}
header nav .filter .filter-content input[type=radio]:checked, header nav .filter .filter-content .contact-me-main .contact-container form button[type=radio]:checked, .contact-me-main .contact-container form header nav .filter .filter-content button[type=radio]:checked, header nav .filter .filter-content .contact-me-main .contact-container form textarea[type=radio]:checked, .contact-me-main .contact-container form header nav .filter .filter-content textarea[type=radio]:checked {
  outline-color: rgb(25.5, 102, 255);
  background: rgb(25.5, 102, 255);
}
header nav .filter .filter-content input[type=checkbox], header nav .filter .filter-content .contact-me-main .contact-container form button[type=checkbox], .contact-me-main .contact-container form header nav .filter .filter-content button[type=checkbox], header nav .filter .filter-content .contact-me-main .contact-container form textarea[type=checkbox], .contact-me-main .contact-container form header nav .filter .filter-content textarea[type=checkbox] {
  border-radius: 0.15rem;
  height: 1rem;
  background: #f6f6f6;
  position: relative;
}
header nav .filter .filter-content input[type=checkbox]:checked, header nav .filter .filter-content .contact-me-main .contact-container form button[type=checkbox]:checked, .contact-me-main .contact-container form header nav .filter .filter-content button[type=checkbox]:checked, header nav .filter .filter-content .contact-me-main .contact-container form textarea[type=checkbox]:checked, .contact-me-main .contact-container form header nav .filter .filter-content textarea[type=checkbox]:checked {
  background: rgb(25.5, 102, 255);
}
header nav .filter .filter-content input[type=checkbox]:checked::before, header nav .filter .filter-content .contact-me-main .contact-container form button[type=checkbox]:checked::before, .contact-me-main .contact-container form header nav .filter .filter-content button[type=checkbox]:checked::before, header nav .filter .filter-content .contact-me-main .contact-container form textarea[type=checkbox]:checked::before, .contact-me-main .contact-container form header nav .filter .filter-content textarea[type=checkbox]:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 0.8rem;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header nav .filter .filter-content .radios,
header nav .filter .filter-content .checkboxes {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.5rem;
}
header nav .filter .filter-content .radios .input-wrapper,
header nav .filter .filter-content .checkboxes .input-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
header nav .filter .filter-content .radios input, header nav .filter .filter-content .radios .contact-me-main .contact-container form button, .contact-me-main .contact-container form header nav .filter .filter-content .radios button, header nav .filter .filter-content .radios .contact-me-main .contact-container form textarea, .contact-me-main .contact-container form header nav .filter .filter-content .radios textarea,
header nav .filter .filter-content .checkboxes input,
header nav .filter .filter-content .checkboxes .contact-me-main .contact-container form button,
.contact-me-main .contact-container form header nav .filter .filter-content .checkboxes button,
header nav .filter .filter-content .checkboxes .contact-me-main .contact-container form textarea,
.contact-me-main .contact-container form header nav .filter .filter-content .checkboxes textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  aspect-ratio: 1;
  cursor: pointer;
}
header nav .filter .filter-content .radios label,
header nav .filter .filter-content .checkboxes label {
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header nav a {
  height: 100%;
  border-radius: 99rem;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-inline: 1rem;
  color: #a4aabb;
  transition: color 0.4s;
  white-space: nowrap;
}
header nav a:has(i) {
  display: none;
}
@media (max-width: 480px) {
  header nav a:has(i) {
    display: flex;
  }
}
@media (max-width: 480px) {
  header nav a:not(:has(i)) {
    display: none;
  }
}
header nav a.active {
  border: 1px solid #232d6b;
  background: #131839;
  color: white;
  font-weight: 600;
}
header nav a:not(.active):hover {
  color: #5978e2;
}
header .contact-me {
  justify-self: end;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: white;
  background: rgb(25.5, 102, 255);
  box-shadow: inset -2px -4px 15px #0055ff;
  padding-inline: 1.8rem;
  border-radius: 99rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.4s, box-shadow 0.4s;
}
header .contact-me i {
  display: none;
}
@media (max-width: 480px) {
  header .contact-me {
    width: 56px;
    height: 56px;
  }
  header .contact-me i {
    display: block;
  }
}
@media (max-width: 480px) {
  header .contact-me span:not(.responsive) {
    display: none;
  }
}
header .contact-me:hover {
  background: rgb(40.8, 112.2, 255);
  box-shadow: inset -2px -4px 15px rgb(25.5, 102, 255);
}

.floating-dots-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -10;
}
.floating-dots-container .dot {
  position: absolute;
  width: 2px;
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  animation: floatDots 20s linear infinite;
}

.home-main {
  margin-inline: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.home-main .profile-container {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 480px) {
  .home-main .profile-container {
    width: 90%;
  }
}
.home-main .profile-container .text-section {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
  width: 45%;
}
@media (max-width: 480px) {
  .home-main .profile-container .text-section {
    width: 100%;
  }
}
.home-main .profile-container .text-section .bottom-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
.home-main .profile-container .text-section .bottom-wrapper .contact-me-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 3rem;
  background: rgb(25.5, 102, 255);
  box-shadow: inset -2px -4px 15px #0055ff;
  border-radius: 99rem;
  padding-inline: 1.5rem;
  transition: background 0.4s, box-shadow 0.4s;
  font-weight: 600;
}
.home-main .profile-container .text-section .bottom-wrapper .contact-me-btn.responsive {
  display: none;
}
@media (max-width: 480px) {
  .home-main .profile-container .text-section .bottom-wrapper .contact-me-btn {
    display: none;
  }
  .home-main .profile-container .text-section .bottom-wrapper .contact-me-btn.responsive {
    display: flex;
    padding-inline: 1.1rem;
  }
}
.home-main .profile-container .text-section .bottom-wrapper .contact-me-btn:hover {
  background: rgb(40.8, 112.2, 255);
  box-shadow: inset -2px -4px 15px rgb(25.5, 102, 255);
}
.home-main .profile-container .text-section .bottom-wrapper .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 3rem;
  background: #080b1d;
  border-radius: 99rem;
  border: 1px solid #232d6b;
  padding: 1rem;
  gap: 1rem;
}
.home-main .profile-container .text-section .bottom-wrapper .socials a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.4rem;
  color: #a4aabb;
  transition: color 0.4s;
}
.home-main .profile-container .text-section .bottom-wrapper .socials a:hover {
  color: #5978e2;
}
.home-main .profile-container .text-section .title {
  font-size: 2rem;
  font-weight: 700;
}
.home-main .profile-container .text-section .description {
  font-size: 1.1rem;
  line-height: 1.4;
}

.about-me-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.about-me-main .about-container {
  margin-inline: 10%;
  flex-grow: 1;
  border-radius: calc(1rem + 20px);
  border: 2px solid #232d6b;
  background: #080b1d;
  padding: 1rem;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  height: 65vh;
}
@media (max-width: 480px) {
  .about-me-main .about-container {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-inline: 8%;
    padding: 2rem;
    margin-top: 4.35rem;
    margin-bottom: 4.35rem;
    gap: 0;
  }
}
.about-me-main .about-container .image-section {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: clamp(2rem, 3vw, 5rem);
}
.about-me-main .about-container .image-section img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.about-me-main .about-container .text-section {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  height: 100%;
  flex: 2;
  padding-top: 2rem;
}
@media (max-width: 480px) {
  .about-me-main .about-container .text-section {
    width: 100%;
    gap: 1rem;
  }
}
.about-me-main .about-container .text-section .text-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
}
.about-me-main .about-container .text-section .text-wrapper .title {
  font-size: 2rem;
  font-weight: 700;
}
.about-me-main .about-container .text-section .text-wrapper .description {
  font-size: 1.1rem;
  line-height: 1.4;
}
.about-me-main .about-container .text-section .programming-languages {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) {
  .about-me-main .about-container .text-section .programming-languages {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.about-me-main .about-container .text-section .programming-languages .pr-lang {
  padding: 0.5rem 1rem;
  background: #131839;
  border: 2px solid #232d6b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .about-me-main .about-container .text-section .programming-languages .pr-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .about-me-main .about-container .text-section .programming-languages .pr-lang span {
    display: none;
  }
}
.about-me-main .about-container .text-section .programming-languages .pr-lang img {
  width: 2.5rem;
}

.projects-main .projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-inline: 10%;
  margin-top: 4.35rem;
  margin-bottom: 4.35rem;
  gap: 2rem;
}
.projects-main .projects-container .project {
  height: 15rem;
  background: #080b1d;
  border-radius: 1.5rem;
  border: 2px solid #232d6b;
  position: relative;
  padding: 1rem;
}
.projects-main .projects-container .project .project-name {
  font-size: 1.2rem;
  font-weight: 500;
}
.projects-main .projects-container .project .creation-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.8rem;
  color: #a4aabb;
}
.projects-main .projects-container .project .used-langs {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.3rem;
}
.projects-main .projects-container .project .used-langs > * {
  height: 1.6rem;
}
.projects-main .projects-container .project .used-langs *.js {
  height: 1.4rem;
  margin-top: 1px;
}
.projects-main .projects-container .project .btn-group {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.projects-main .projects-container .project .btn-group .see-project-btn,
.projects-main .projects-container .project .btn-group .github-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  border-radius: 99rem;
  border: 1px solid #232d6b;
  background: #131839;
}
.projects-main .projects-container .project .btn-group .see-project-btn {
  padding-inline: 1rem;
  font-size: 0.9rem;
}
.projects-main .projects-container .project .btn-group .github-btn {
  aspect-ratio: 1;
  font-size: 1.4rem;
}
.projects-main .projects-container .project .btn-group .github-btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.contact-me-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.contact-me-main .contact-container {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.8rem;
  width: 450px;
}
@media (max-width: 480px) {
  .contact-me-main .contact-container {
    width: 90%;
  }
}
.contact-me-main .contact-container .header-section {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.contact-me-main .contact-container .header-section_title {
  font-size: 2rem;
}
.contact-me-main .contact-container form {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.contact-me-main .contact-container form input, .contact-me-main .contact-container form button, .contact-me-main .contact-container form textarea {
  width: 100%;
  height: 55px;
  padding-inline: 1rem;
  background: #080b1d;
  border: 1px solid #232d6b;
  border-radius: 27.5px;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  color: #a4aabb;
}
.contact-me-main .contact-container form textarea {
  height: auto;
  resize: none;
  padding-top: 1rem;
}
.contact-me-main .contact-container form button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  width: auto;
  padding-inline: 1.5rem;
  background: rgb(25.5, 102, 255);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  box-shadow: inset -2px -4px 15px #0055ff;
  cursor: pointer;
  transition: background 0.4s, box-shadow 0.4s;
}
.contact-me-main .contact-container form button:hover {
  background: rgb(40.8, 112.2, 255);
  box-shadow: inset -2px -4px 15px rgb(25.5, 102, 255);
}

.pop-up {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 999;
}
.pop-up_container {
  width: 350px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background: #080b1d;
  padding: 1rem;
  border-radius: 27.5px;
  border: 1px solid #232d6b;
  position: relative;
}
.pop-up_container i {
  font-size: 5rem;
  color: rgb(25.5, 102, 255);
  margin-top: 1rem;
}
.pop-up_container_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.pop-up_container_text {
  opacity: 0.8;
  line-height: 1.2;
  text-align: center;
}
.pop-up_container .close-modal {
  height: 35px;
  padding-inline: 1.5rem;
  border: none;
  align-self: end;
  border-radius: 11.5px;
  background: rgb(25.5, 102, 255);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  box-shadow: inset -2px -4px 15px #0055ff;
  cursor: pointer;
  transition: background 0.4s, box-shadow 0.4s;
}
.pop-up_container .close-modal:hover {
  background: rgb(40.8, 112.2, 255);
  box-shadow: inset -2px -4px 15px rgb(25.5, 102, 255);
}

.loader {
  inset: 0;
  position: fixed;
  background: #121725;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.loader .spinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 12px solid #232d6b;
  border-top-color: #5978e2;
  animation: spinLoader 1s linear infinite;
}

body.loading main,
body.loading header,
body.loading footer {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */