/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

h1 {
  font-family: Sora;
  font-size: 3vw;
  font-weight: 600;
  letter-spacing: 0em;
  color: white;
}

h2 {
  font-family: Sora;
  font-size: 2vw;
  font-weight: 300;
  line-height: 2.5vw;
  letter-spacing: 0em;
  color: white;
}

h3 {
  font-family: Montserrat;
  font-size: 1.2vw;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}

p {
  font-family: Montserrat;
  font-size: 1vw;
  font-weight: 400;
  letter-spacing: 0em;
  color: white;
}

.tag-bold {
  font-family: Source Code Pro;
  font-size: 1.1vw;
  font-weight: 700;
  letter-spacing: 0em;
  color: white;
}

.tag-regular {
  font-family: Source Code Pro;
  font-size: 0.8vw;
  font-weight: 400;
  letter-spacing: 0em;
  color: white;
}

.label {
  font-family: Source Code Pro;
  font-size: 0.6vw;
  font-weight: 700;
  line-height: 1.5vw;
  letter-spacing: 0em;
  color: #5A3FFF;
}

@media (max-width: 768px) {
  h1 {
    font-family: Sora;
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: 0em;
    color: white;
  }
  h2 {
    font-family: Sora;
    font-size: 6vw;
    font-weight: 500;
    line-height: 6.5vw;
    letter-spacing: 0em;
    color: white;
  }
  h3 {
    font-family: Montserrat;
    font-size: 4.5vw;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
    color: white;
  }
  p {
    font-family: Montserrat;
    font-size: 3.5vw;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0em;
    color: white;
  }
  .label {
    font-family: Source Code Pro;
    font-size: 4.2vw !important;
    font-weight: 500;
    line-height: 1.5vw;
    letter-spacing: 0em;
    color: #5A3FFF;
  }
  .tag-regular {
    font-family: Source Code Pro;
    font-size: 3vw;
    font-weight: 400;
    letter-spacing: 0em;
    color: white;
  }
}
::-moz-selection { /* Code for Firefox */
  color: white;
  background: #5A3FFF;
}

::selection {
  color: white;
  background: #5A3FFF;
}

.primary-button {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1vw 1.5vw;
  width: fit-content;
  height: fit-content;
  color: #ffffff;
  text-decoration: none;
  background: #5A3FFF;
  box-shadow: 0vw 0vw 2.7vw rgba(90, 63, 255, 0.41);
  border-radius: 0.3vw;
  transition: 0.3s;
}
.primary-button svg {
  height: 1vw !important;
}
.primary-button .folder-open {
  display: none;
}
.primary-button p {
  width: 100%;
  font-size: 1vw;
}
.primary-button:hover {
  background: #7059ff;
  transition: 0.3s;
  transform: translatey(3px);
}
.primary-button:hover .folder-closed {
  display: none;
}
.primary-button:hover .folder-open {
  display: flex;
}

.secondary-button {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1vw 1.5vw;
  gap: 0.6vw;
  width: fit-content;
  height: fit-content;
  border: 0.07vw solid #ffffff;
  border-radius: 0.3vw;
  transition: 0.3s;
  text-decoration: none !important;
}
.secondary-button a p {
  width: max-content;
  font-size: 0.8vw;
  color: #ffffff !important;
}
.secondary-button:hover {
  background: rgba(255, 255, 255, 0.245);
  transition: 0.3s;
  transform: translatey(3px);
}

.project-button {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5vw 1.5vw;
  gap: 0.6vw;
  width: 100% !important;
  height: fit-content;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.3vw;
  transition: 0.3s;
  text-align: center;
}
.project-button svg {
  height: 1.2vw;
  fill: white;
}
.project-button .book-opened {
  display: none;
}
.project-button:hover {
  background: #7059ff;
  transition: 0.3s;
  transform: translatey(3px);
}
.project-button:hover .book-closed {
  display: none;
}
.project-button:hover .book-opened {
  display: flex;
}

.resume-button {
  margin-left: 1.5vw;
  display: flex;
  padding: 0.1vw;
  justify-content: center;
  align-items: center;
  gap: 0.3vw;
  border-radius: 0.15vw;
  background: linear-gradient(90deg, #5A3FFF 0%, #BB3CF7 100%);
  text-decoration: none;
  transition: 0.3s;
}
.resume-button .text-wrapper {
  display: flex;
  padding: 0.3vw 0.46vw 0.3vw 0.46vw;
  justify-content: center;
  align-items: center;
  gap: 0.3vw;
  border-radius: 0.15vw;
  background: #1A1128;
  transition: 0.3s;
}
.resume-button .text-wrapper p {
  transition: 0.3s;
  background: linear-gradient(90deg, #5A3FFF 0%, #BB3CF7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.8vw !important;
  font-weight: 600;
}
.resume-button .text-wrapper svg {
  transition: 0.3s;
  fill: #BB3CF7;
}
.resume-button .text-wrapper:hover {
  transition: 0.3s;
  background: linear-gradient(90deg, #5A3FFF 0%, #BB3CF7 100%);
}
.resume-button .text-wrapper:hover p {
  transition: 0.3s;
  background: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.resume-button .text-wrapper:hover svg {
  transition: 0.3s;
  fill: white;
}

.text-button {
  padding: 0;
  background: none;
  border: none;
  transition: 0.3s;
}
.text-button a {
  transition: 0.5s;
  font-family: Montserrat;
  font-size: 1vw;
  text-decoration: none;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  width: fit-content;
}
.text-button a svg {
  height: 1.2vw !important;
  fill: #ffffff;
  transition: 0.3s;
}
.text-button a:hover {
  color: #5A3FFF;
  transition: 0.3s;
}
.text-button a:hover svg {
  fill: #5A3FFF;
  transform: translateX(0.3vw);
  transition: 0.3s;
}

.switch {
  position: relative;
  display: inline-block;
  width: 3.6vw;
  height: 1.8vw;
  /* Hide default HTML checkbox */
  /* The slider */
}
.switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  border-radius: 0.3vw;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  border-radius: 0.3vw;
  position: absolute;
  content: "";
  height: 1.2vw;
  width: 1.4vw;
  left: 0.3vw;
  bottom: 0.3vw;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: #5A3FFF;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #5A3FFF;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(1.6vw);
  -ms-transform: translateX(1.6vw);
  transform: translateX(1.6vw);
  content: "";
}

.chip {
  z-index: 100 !important;
  display: inline-flex;
  align-items: center;
  background-color: transparent; /* Transparent background */
  border: 2px solid #fff; /* White stroke */
  border-radius: 16px;
  padding: 8px 16px; /* Adjusted padding */
  margin: 4px; /* Add some margin between chips */
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-family: Montserrat;
  font-size: 1vw;
  font-weight: 500;
}
.chip:hover {
  background-color: rgba(255, 255, 255, 0.129); /* Slight gray on hover */
}
.chip.selected {
  background-color: #fff; /* White background for selected chips */
  border-color: #fff; /* White border for selected chips */
  color: #000; /* Black text for selected chips */
}
.chip.selected .chip-label {
  margin-left: 8px; /* Add 8px spacing between the check and text */
  color: #000; /* Black text for selected chips */
}
.chip.selected .check-icon {
  fill: #000; /* Black checkmark for selected chips */
  display: block; /* Display the checkmark for selected chips */
}
.chip .chip-label {
  color: #fff; /* White text for unselected chips */
}
.chip .check-icon {
  width: 24px;
  height: 24px;
  display: none; /* Initially, hide the checkmark icon */
  fill: #fff; /* White checkmark for unselected chips */
}

.message-box {
  z-index: 2;
  position: absolute;
  visibility: hidden;
  width: fit-content;
  color: white;
  padding: 0.5vw;
  border-radius: 0px 4px 4px 4px;
  border: 1px solid #4E4C4C;
  background: #453E41;
}

.reveal {
  position: absolute;
  padding: 0vw 0.7vw;
  border-radius: 224px;
  background: rgba(166, 157, 157, 0.3);
  box-shadow: 0px 4px 20px 0px #000;
  backdrop-filter: blur(4.5px);
  font-size: 1.5vw;
  color: white;
  transition: 0.3s;
}
.reveal:hover {
  cursor: pointer;
  background: #5A3FFF;
  transition: 0.3s;
}
.reveal:hover + .message-box {
  visibility: visible;
}

.github-button {
  margin-top: 1vw;
  display: flex;
  gap: 0.5vw;
  width: fit-content;
  padding: 1vw;
  border: solid 1px white;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 0.5vw;
  text-decoration: none;
  transition: 0.3s;
}
.github-button svg {
  width: 1.5vw;
}
.github-button:hover {
  background: rgba(255, 255, 255, 0.242);
  transition: 0.3s;
}

.project-buttons-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2vw 9.5vw 4vw 9.5vw;
}
.project-buttons-footer .flip-arrow {
  transform: rotate(180deg);
}
.project-buttons-footer .secondary-button {
  display: flex;
  gap: 1vw;
  align-items: center;
}
.project-buttons-footer .secondary-button svg {
  fill: white;
}

.project-navigation-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18.5vw;
  gap: 1vw;
  padding: 1vw;
  border-radius: 0.2vw;
  border: 0.04vw solid rgba(255, 204, 106, 0.16);
  background: rgba(255, 204, 106, 0.1);
  text-decoration: none !important;
  transition: 0.3s;
}
.project-navigation-button p {
  color: #FFCC6A;
}
.project-navigation-button .icon-wrapper {
  padding: 1vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
}
.project-navigation-button .icon-wrapper svg {
  fill: #FFCC6A;
  height: 1.5vw;
}
.project-navigation-button .icon-wrapper .icon-start {
  display: flex;
}
.project-navigation-button .icon-wrapper .icon-end {
  display: none;
}
.project-navigation-button:hover {
  transition: 0.3s;
  border-radius: 0.2vw;
  border: 0.04vw solid rgba(255, 204, 106, 0.16);
  background: rgba(255, 204, 106, 0.2);
  box-shadow: 0px 4px 42px 0px rgba(255, 204, 106, 0.2);
}
.project-navigation-button:hover .icon-start {
  display: none;
}
.project-navigation-button:hover .icon-end {
  display: flex;
}

.accordion {
  width: 100%;
  margin: 1vw auto;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.accordion .section {
  border-radius: 0.2vw;
  border: 0.04vw solid rgba(255, 204, 106, 0.16);
}
.accordion .section .section-header {
  display: flex;
  align-items: center;
  border-radius: 0.2vw;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 204, 106, 0.1);
}
.accordion .section .section-header p {
  padding: 1vw;
  color: #FFCC6A;
}
.accordion .section .section-header svg {
  height: 1vw;
  fill: #FFCC6A;
}
.accordion .section .section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion .section .section-content .content-inner {
  padding: 1vw;
}
.accordion .section.active .section-content {
  max-height: 200px;
  transition: max-height 0.3s ease;
}

.solution-pill {
  background: rgba(255, 204, 106, 0.1);
  width: fit-content;
  border-radius: 0.2vw;
  padding: 0.4vw;
}
.solution-pill p {
  color: #FFCC6A;
}

@media (max-width: 768px) {
  .primary-button {
    width: 100%;
    padding: 3vw;
    gap: 2vw;
    border-radius: 1vw;
  }
  .primary-button svg {
    height: 5vw !important;
  }
  .secondary-button {
    width: 100%;
    padding: 3vw 3vw;
    gap: 0.6vw;
    border: none;
    border-radius: 1vw;
  }
  .chips-wrapper {
    width: 100vw; /* Adjust this width as needed */
    padding-left: 0vw !important;
  }
  .chips-wrapper .chips-container {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide the scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide the scrollbar on IE/Edge */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-left: 8vw;
    padding-right: 13vw;
    padding-bottom: 8vw;
  }
  .chips-wrapper .chips-container::-webkit-scrollbar {
    width: 0px; /* Hide the scrollbar on Webkit browsers */
  }
  .chips-wrapper .chips-container .chip {
    margin-right: 10px; /* Add some spacing between chips */
    border: 0.4vw solid #fff; /* White stroke */
    border-radius: 2vw;
    height: fit-content;
    margin: 1vw; /* Add some margin between chips */
    font-size: 4vw;
  }
  .chips-wrapper .chips-container .chip.selected .chip-label {
    margin-left: 1vw; /* Add 8px spacing between the check and text */
  }
  .chips-wrapper .chips-container .chip .check-icon {
    margin-left: -2vw;
    height: 4vw;
    display: none; /* Initially, hide the checkmark icon */
    fill: #fff; /* White checkmark for unselected chips */
  }
  .github-button {
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 4vw;
    border-radius: 1vw;
  }
  .github-button svg {
    width: 5vw !important;
  }
  .project-navigation-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1vw;
    padding: 2vw;
    border-radius: 1vw;
    border: 0.04vw solid rgba(255, 204, 106, 0.16);
    background: rgba(255, 204, 106, 0.1);
    text-decoration: none !important;
    transition: 0.3s;
  }
  .project-navigation-button p {
    font-size: 3vw !important;
    color: #FFCC6A;
  }
  .project-navigation-button .icon-wrapper {
    padding: 1vw;
    border-radius: 0.2vw;
    background: rgba(255, 204, 106, 0.1);
  }
  .project-navigation-button .icon-wrapper svg {
    fill: #FFCC6A;
    height: 3vw;
  }
  .project-navigation-button .icon-wrapper .icon-start {
    display: flex;
  }
  .project-navigation-button .icon-wrapper .icon-end {
    display: none;
  }
  .project-navigation-button:hover {
    transition: 0.3s;
    border-radius: 0.2vw;
    border: 0.04vw solid rgba(255, 204, 106, 0.16);
    background: rgba(255, 204, 106, 0.2);
    box-shadow: 0px 4px 42px 0px rgba(255, 204, 106, 0.2);
  }
  .project-navigation-button:hover .icon-start {
    display: none;
  }
  .project-navigation-button:hover .icon-end {
    display: flex;
  }
  .accordion {
    width: 100%;
    margin: 1vw auto;
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  .accordion .section {
    border-radius: 0.2vw;
    border: 0.04vw solid rgba(255, 204, 106, 0.16);
  }
  .accordion .section .section-header {
    display: flex;
    align-items: center;
    border-radius: 0.2vw;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 204, 106, 0.1);
  }
  .accordion .section .section-header p {
    padding: 1vw;
    color: #FFCC6A;
  }
  .accordion .section .section-header svg {
    height: 3vw;
    fill: #FFCC6A;
  }
  .accordion .section .section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .accordion .section .section-content .content-inner {
    padding: 2vw;
  }
  .accordion .section.active .section-content {
    max-height: 200px;
    transition: max-height 0.3s ease;
  }
}
.skill-card {
  display: flex;
  width: 24vw;
  padding: 2.5vw 6.2vw 2.5vw 5vw;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3vw;
  border-radius: 0.6vw;
  border: 0.07vw solid #2A2240;
  background: rgba(26, 9, 38, 0.6);
  backdrop-filter: blur(0.7vw);
}
.skill-card svg {
  fill: white;
  height: 1.8vw;
  width: auto;
}
.skill-card h3 {
  color: #FFFFFF;
  text-align: center;
}
.skill-card p {
  color: #656565;
}
.skill-card:hover {
  border: 0.07vw solid #5A3FFF;
  transition: 0.5s ease-in-out;
}

.project-card {
  position: relative;
  display: flex;
  width: 18vw !important;
  height: 30vw;
  padding: 1.25vw;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0.6vw;
  border: 0.07vw solid #2A2240;
  background: #1E0C30;
  box-shadow: 0vw 0vw 0vw 0vw rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1), 0px 4px 4px 0px rgba(0, 0, 0, 0.09), 0px 8px 5px 0px rgba(0, 0, 0, 0.05), 0px 14px 6px 0px rgba(0, 0, 0, 0.01), 0px 22px 6px 0px rgba(0, 0, 0, 0);
  backdrop-filter: blur(0.7vw);
  transition: 0.3s;
}
.project-card:hover {
  background: #2A1044;
  transform: translateY(4px);
  transition: 0.3s ease-in-out;
  border: 1px solid rgba(53, 41, 89, 0.8156862745);
}
.project-card img {
  width: 100%;
  height: auto;
}
.project-card .coming-soon-wrapper {
  display: flex;
  justify-content: center;
  gap: 1vw;
}
.project-card .coming-soon-wrapper .coming-soon {
  margin-top: -0.3vw;
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: rgba(179, 179, 179, 0.1);
  color: white;
  font-family: Source Code Pro;
  font-size: 0.9vw !important;
}
.project-card h3 {
  font-weight: 700;
}
.project-card .card-description {
  color: #C8C8C8;
  font-family: Source Code Pro;
  font-size: 0.95vw;
}
.project-card .tags {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5vw;
}
.project-card .tags .tags-row {
  width: 100%;
  display: flex;
  gap: 0.5vw;
}
.project-card .tags .tags-row .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(94, 183, 145, 0.1);
  color: #5EB791;
}
.project-card .tags .tags-row .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(187, 60, 247, 0.1);
  color: #BB3CF7;
}
.project-card .tags .tags-row2 {
  width: 100%;
  display: flex;
  gap: 0.5vw;
}
.project-card .tags .tags-row2 .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
  color: #FFCC6A;
}
.project-card .tags .tags-row2 .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.project-card .tags .tags-row3 {
  width: 100%;
  display: flex;
  gap: 0.5vw;
}
.project-card .tags .tags-row3 .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(60, 100, 247, 0.1);
  color: #3C64F7;
}
.project-card .tags .tags-row3 .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.project-card .tags .hide-tag {
  opacity: 0;
}

#disabled {
  background-color: #191919 !important;
  border: 0.07vw solid #191919;
  pointer-events: none;
}

.process-card {
  display: inline-flex;
  padding: 1.8vw;
  width: 33.8vw;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25vw;
  border-radius: 1.25vw;
  border: 0.07vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.7vw);
}
.process-card .title-container {
  display: flex;
  gap: 1.25vw;
}
.process-card svg {
  height: 1vw;
}

.hero-banner-card {
  display: inline-flex;
  padding: 1.3vw 0.5vw 0.5vw 0.5vw;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.2vw;
  border-radius: 0.5vw;
  background: rgba(166, 157, 157, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.hero-banner-card p {
  font-size: 0.7vw !important;
}
.hero-banner-card .xp {
  font-size: 0.6vw !important;
  font-weight: 600;
  color: #5EB791 !important;
}
.hero-banner-card svg {
  width: 1.2vw;
  margin-top: -2vw;
}

@media (max-width: 768px) {
  .skill-card {
    display: flex;
    width: 24vw;
    padding: 2.5vw 6.2vw 2.5vw 5vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.3vw;
    border-radius: 0.6vw;
    border: 0.07vw solid #2A2240;
    background: rgba(26, 9, 38, 0.6);
    backdrop-filter: blur(0.7vw);
  }
  .skill-card svg {
    fill: white;
    height: 1.8vw;
    width: auto;
  }
  .skill-card h3 {
    color: #FFFFFF;
    text-align: center;
  }
  .skill-card p {
    color: #656565;
  }
  .skill-card:hover {
    border: 0.07vw solid #5A3FFF;
    transition: 0.5s ease-in-out;
  }
  .project-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 60vw !important;
    height: 105vw;
    padding: 3vw;
    border-radius: 1vw;
    border: 0.07vw solid #2A2240;
    box-shadow: 0vw 0vw 0vw 0vw rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1), 0px 4px 4px 0px rgba(0, 0, 0, 0.09), 0px 8px 5px 0px rgba(0, 0, 0, 0.05), 0px 14px 6px 0px rgba(0, 0, 0, 0.01), 0px 22px 6px 0px rgba(0, 0, 0, 0);
    backdrop-filter: blur(0.7vw);
  }
  .project-card:hover {
    background: #1E0C30;
    transform: none;
    transition: none;
    border: 0.07vw solid #2A2240;
  }
  .project-card .coming-soon-wrapper {
    gap: 2vw;
    flex-direction: column;
  }
  .project-card .coming-soon-wrapper .coming-soon {
    width: fit-content;
    font-size: 3vw !important;
    margin-top: -1.5vw !important;
  }
  .project-card .project-description {
    font-family: Source Code Pro;
    color: #C8C8C8;
    font-size: 4vw !important;
  }
  .project-card .tags {
    gap: 2vw;
    display: flex;
    align-items: flex-start;
  }
  .project-card .tags .tags-row {
    gap: 1vw;
  }
  .project-card .tags .tags-row .tag-regular:nth-child(1) {
    padding: 0.8vw 0.8vw;
    gap: 2vw;
    border-radius: 0.8vw;
    background: rgba(94, 183, 145, 0.1);
  }
  .project-card .tags .tags-row .tag-regular:nth-child(2) {
    padding: 0.8vw 0.8vw;
    gap: 2vw;
    border-radius: 0.8vw;
  }
  .project-card .tags .tags-row2 {
    width: 100%;
    display: flex;
    gap: 2vw;
  }
  .project-card .tags .tags-row2 .tag-regular:nth-child(1) {
    padding: 0.8vw 0.8vw;
    gap: 2vw;
    border-radius: 0.8vw;
  }
  .project-card .tags .tags-row3 {
    gap: 2vw;
  }
  .project-card .tags .tags-row3 .tag-regular:nth-child(1) {
    padding: 0.8vw 0.8vw;
    gap: 2vw;
    border-radius: 0.8vw;
  }
  .project-card .tags .tags-row3 .tag-regular:nth-child(2) {
    padding: 0.8vw 0.8vw;
    gap: 2vw;
    border-radius: 0.8vw;
  }
  .process-card {
    display: inline-flex;
    padding: 4vw;
    width: 60vw;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25vw;
    border-radius: 1.25vw;
    border: 0.07vw solid #2A2240;
    background: #1E0C30;
    backdrop-filter: blur(0.7vw);
  }
  .process-card .title-container {
    display: flex;
    gap: 1.25vw;
  }
  .process-card svg {
    height: 4.5vw;
  }
  .hero-banner-card {
    padding: 1.3vw 2vw 1.3vw 2vw;
    gap: 0.2vw;
    border-radius: 1vw;
    background: rgba(166, 157, 157, 0.3);
    backdrop-filter: blur(0.6vw);
  }
  .hero-banner-card p {
    font-size: 3vw !important;
  }
  .hero-banner-card .xp {
    font-size: 3vw !important;
    font-weight: 600;
    color: #5EB791 !important;
  }
  .hero-banner-card svg {
    width: 5vw !important;
    margin-top: -4vw !important;
  }
}
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
  padding: 5.3vw 11.7vw 5.3vw 11.7vw;
  gap: 4vw;
  /* Snackbar Styles */
}
footer .label {
  position: absolute;
  font-size: 1vw;
  top: 3.5vw;
  left: 43vw;
}
footer .email {
  height: fit-content;
  width: 20vw;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  padding: 0.5vw 1vw 0.5vw 2.6vw;
  justify-content: center;
  align-items: center;
  background: rgba(166, 157, 157, 0.1);
  background-image: url(/assets/images/send-plane.svg);
  background-repeat: no-repeat;
  background-position: 0.5vw;
  border: 0.06vw solid #9e9e9e;
  border-radius: 0.4vw;
  stroke: none;
  text-align: center;
  font-family: Montserrat;
  font-size: 1vw;
  color: rgb(183, 183, 183);
  transition: 0.5s;
}
footer .email:hover {
  color: white;
  transform: translateY(3px);
  transition: 0.5s;
}
footer .snackbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .snackbar-container #snackbar {
  visibility: hidden;
  width: 16vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #5A3FFF;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 8px;
  position: fixed;
  z-index: 1;
  bottom: 30px;
  font-family: Montserrat;
  font-size: 1vw;
  opacity: 0;
  transition: opacity 0.3s, bottom 0.5s;
}
footer .snackbar-container #snackbar.show {
  visibility: visible;
  opacity: 1;
  bottom: 10vw; /* Adjust this value to control how far up the snackbar slides */
}
footer section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer section .footer-text-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3vw;
}
footer section .footer-resume-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.3vw;
}
footer section img {
  height: 1.4vw;
}
footer section a {
  text-decoration: none;
}
footer section a:hover {
  text-decoration: underline;
  text-decoration-color: white;
}

@media (max-width: 768px) {
  footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    padding: 5.3vw 11.7vw 5.3vw 11.7vw;
    gap: 8vw;
    /* Snackbar Styles */
  }
  footer .label {
    position: absolute;
    font-size: 1vw;
    top: 1vw;
    left: 12vw;
  }
  footer .email {
    height: fit-content;
    width: 75vw;
    margin-right: auto;
    margin-left: auto;
    cursor: pointer;
    padding: 0.5vw 1vw 0.5vw 2.6vw;
    justify-content: center;
    align-items: center;
    background: rgba(166, 157, 157, 0.1);
    background-image: url(/assets/images/send-plane.svg);
    background-repeat: no-repeat;
    background-size: 4vw;
    background-position: 0.5vw;
    border: 0.06vw solid #9e9e9e;
    border-radius: 0.4vw;
    stroke: none;
    text-align: center;
    font-family: Montserrat;
    font-size: 4vw;
    color: rgb(183, 183, 183);
    transition: 0.5s;
  }
  footer .email:hover {
    color: white;
    transform: translateY(3px);
    transition: 0.5s;
  }
  footer .snackbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .snackbar-container #snackbar {
    visibility: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #5A3FFF;
    color: white;
    text-align: center;
    border-radius: 2px;
    padding: 8px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    font-family: Montserrat;
    font-size: 4vw;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.5s;
  }
  footer .snackbar-container #snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 10vw; /* Adjust this value to control how far up the snackbar slides */
  }
  footer section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
    justify-content: space-between;
  }
  footer section .footer-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
  }
  footer section .footer-resume-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.3vw;
  }
  footer section img {
    height: 1.4vw;
  }
  footer section a {
    text-decoration: none;
  }
  footer section a:hover {
    text-decoration: underline;
    text-decoration-color: white;
  }
}
header {
  margin-top: 3vw;
  z-index: 1;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .links-container {
  width: auto;
  display: inline-flex;
  padding: 0.4vw 1.8vw 0.4vw 1.8vw;
  justify-content: center;
  align-items: center;
  gap: 0.6vw;
  border-radius: 0.6vw;
  border: 0.07vw solid #2A2240;
  background: rgba(35, 25, 49, 0.5254901961);
  backdrop-filter: blur(0.7vw);
  transition: 0.5s;
}
header .links-container .toggle-switch {
  margin-left: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5vw;
}
header .links-container .header-link {
  display: flex;
  height: fit-content;
  width: 6vw;
  padding: 0.6vw 0.6vw 0.6vw 0.9vw;
  justify-content: center;
  align-items: center;
  gap: 0.6vw;
  text-decoration: none;
  position: relative;
}
header .links-container .header-link svg {
  position: absolute;
  height: 0.7vw !important;
  opacity: 0;
  top: 0.85vw;
  left: 1.3vw;
  transition: transform 0.5s, opacity 0.3s;
  fill: white;
}
header .links-container .header-link .projects-svg {
  left: 0.9vw;
}
header .links-container .header-link p {
  font-size: 0.8vw !important;
  transition: transform 0.5s;
}
header .links-container .header-link:hover {
  transition: 0.5s;
  background-color: rgba(72, 16, 151, 0.336);
  border-radius: 0.6vw;
}
header .links-container .header-link:hover p {
  transition: 0.5s;
  transform: translateX(0.5vw);
}
header .links-container .header-link:hover svg {
  transition: 0.5s;
  transform: scale(1.3);
  opacity: 1;
}
header .links-container .header-link:not(:hover) { /* Added :not(:hover) pseudo-class */
  transition: 0.5s;
}
header .links-container .header-link:not(:hover) p {
  transform: translateX(0); /* Reset the translation */
}
header .links-container .header-link:not(:hover) svg {
  transform: scale(1);
  opacity: 0;
}
header .links-container svg {
  height: 1vw !important;
}
header .links-container svg .whitebit {
  fill: white;
  transition: fill 0.4s ease;
}
header .links-container svg .bluebit {
  fill: #5A3FFF;
  transition: fill 0.4s ease;
}
header .links-container svg:hover .whitebit {
  fill: #5A3FFF;
  transition: fill 0.4s ease;
}
header .links-container svg:hover .bluebit {
  fill: #ffffff;
  transition: fill 0.4s ease;
}

#menuToggle {
  display: none;
}

#logo {
  display: none;
}

@media (max-width: 768px) {
  nav {
    display: block;
    justify-content: space-between;
  }
  nav #logo {
    display: flex;
    margin-top: 4%;
    padding-left: 10%;
    z-index: 30;
    height: 7vw !important;
  }
  nav #logo .whitebit {
    fill: white;
    transition: fill 0.4s ease;
  }
  nav #logo .bluebit {
    fill: #5A3FFF;
    transition: fill 0.4s ease;
  }
  nav #logo:hover .whitebit {
    fill: #5A3FFF;
    transition: fill 0.4s ease;
  }
  nav #logo:hover .bluebit {
    fill: #ffffff;
    transition: fill 0.4s ease;
  }
  nav #menuToggle {
    display: block;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 10vw;
    left: 83%;
    z-index: 2;
    user-select: none;
  }
  nav #menuToggle a {
    text-decoration: none;
  }
  nav #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    user-select: none;
  }
  nav #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #ffffff;
  }
  nav #menuToggle span {
    display: block;
    width: 7vw;
    height: 0.5vw;
    margin-bottom: 1.5vw;
    position: relative;
    background: #ffffff;
    border-radius: 0.2vw;
    z-index: 1;
    transform-origin: 1vw 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  nav #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  nav #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  nav #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  nav #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  nav #menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin: -16% 0 0 -83%;
    padding: 50px;
    padding-top: 125px;
    background: rgb(9, 0, 41);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  nav #menu li {
    text-align: center;
    padding: 12vw 0;
    font-family: Sora;
    font-size: 8vw;
    font-weight: 300;
    line-height: 2.5vw;
    letter-spacing: 0em;
    color: white;
  }
  nav #menu li:hover {
    color: #cdcdcd;
  }
  nav #menuToggle input:checked ~ #menu {
    transform: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #0a0118;
}
body #particles-js {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
}
body .pointer-blue {
  position: absolute;
  top: 74%;
  right: 50%;
  height: 1vw;
  z-index: 10;
}
body .pointer-green {
  position: absolute;
  top: 44%;
  right: 3%;
  height: 1vw;
  z-index: 10;
}
body .pointer-purple {
  position: absolute;
  top: 24%;
  right: 47%;
  height: 1vw;
  z-index: 10;
}
body .pointer-yellow {
  position: absolute;
  top: 54%;
  left: 2%;
  height: 1vw;
  z-index: 10;
}

@keyframes verticalMove {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
}
.hero-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 9.5vw;
  height: 53vw;
  position: relative;
}
.hero-banner h3 span {
  font-weight: 700;
}
.hero-banner .hero-items-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  gap: 3vw;
}
.hero-banner .hero-items-left .intro-pill {
  display: flex;
  align-items: end;
  gap: 1.2vw;
}
.hero-banner .hero-items-left .intro-pill a {
  margin-bottom: -0.1vw;
}
.hero-banner .hero-items-left .intro-pill .location {
  display: flex;
  width: fit-content;
  padding: 0.4vw 0.6vw 0.4vw 0.3vw;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: rgba(166, 157, 157, 0.2);
}
.hero-banner .hero-items-left .intro-pill .socials {
  display: flex;
}
.hero-banner .hero-items-left svg {
  height: 1.8vw;
  fill: white;
  margin-left: 0.6vw;
}
.hero-banner .hero-items-left .button-group {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}
.hero-banner .hero-items-left .secondary-button {
  display: none;
}
.hero-banner .hero-items-right {
  position: relative;
  width: 50%;
  height: 100%;
}
.hero-banner .hero-items-right img {
  margin-left: -1vw;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  pointer-events: none;
  width: 100%;
  animation: verticalMove 10s infinite alternate;
}
.hero-banner .hero-items-right .bg-circle {
  position: absolute;
  top: -20%;
  z-index: -1;
}
.hero-banner .hero-items-right .hero-banner-card {
  position: absolute;
  top: 45%;
  left: -5%;
  z-index: -1;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(1) {
  top: 35%;
  left: 84%;
  z-index: -1;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(1) svg {
  width: 1.2vw;
  margin-top: -2vw;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(2) {
  top: 15%;
  left: 40%;
  z-index: 1;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(2) svg {
  width: 1.2vw;
  margin-top: -2vw;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(3) {
  top: 65%;
  left: 45%;
  z-index: 1;
}
.hero-banner .hero-items-right .hero-banner-card:nth-child(3) svg {
  width: 1.2vw;
  margin-top: -2vw;
}

.projects-section {
  height: auto;
  width: 100%;
  padding: 0vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.projects-section .section-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.projects-section .section-intro p {
  font-size: 1vw;
  color: white;
}
.projects-section .section-intro div {
  display: flex;
  align-items: center;
}
.projects-section .section-intro div svg {
  fill: white;
}
.projects-section .section-intro span {
  margin: 0vw 0.2vw 0.2vw 0vw;
  color: #5A3FFF;
  font-size: 2vw;
}
.projects-section .project-card-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3.7vw;
  gap: 2vw;
}
.projects-section .project-card-row a {
  text-decoration: none;
  width: fit-content;
}
.projects-section .button-row {
  width: 100%;
  padding-top: 2vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.projects-section .button-row .primary-button {
  gap: 0.5vw;
}

.projects-section-mobile {
  display: none !important;
}

.methodology-section {
  height: fit-content;
  width: 100%;
  padding: 10vw 9.5vw;
  display: flex;
  flex-direction: column;
  gap: 3.7vw;
  align-items: center;
  justify-content: center;
}
.methodology-section .section-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.methodology-section .section-intro p {
  font-size: 1vw;
  color: white;
}
.methodology-section .section-intro div {
  display: flex;
  align-items: center;
}
.methodology-section .section-intro div svg {
  fill: white;
}
.methodology-section .process-card-row {
  position: relative;
  display: flex;
  gap: 3.7vw;
}
.methodology-section .text {
  width: 100%;
}
.methodology-section span {
  color: #5A3FFF;
}
.methodology-section h3 {
  font-weight: 700;
}

.methodology-section-mobile {
  display: none !important;
}

.about-title-container {
  width: 100%;
  padding: 10vw 10vw 2vw 10vw;
}

main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1vw;
  margin-bottom: 8vw;
}
main .about-card-title {
  display: flex;
  gap: 1vw;
}
main .about-items-left {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
main .about-items-left .bio {
  display: flex;
  width: 40vw;
  height: 20vw;
  padding: 1.5vw;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5vw;
  flex-shrink: 0;
  border-radius: 0.5vw;
  background-repeat: no-repeat;
  border: 0.06vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.6vw);
}
main .about-items-left .bio .bio-items-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
  align-self: stretch;
}
main .about-items-left .bio .bio-items-left .bio-img {
  height: 6.5vw;
}
main .about-items-left .bio .bio-items-left .favorite-tools {
  display: flex;
  align-items: center;
  gap: 1vw;
}
main .about-items-left .bio .bio-items-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
main .about-items-left .bio .bio-items-right .bio-text-1 {
  margin-top: 0.8vw;
  color: #cabdd1 !important;
}
main .about-items-left .bio .bio-items-right .bio-text-2 {
  margin-top: 1.8vw;
  color: #cabdd1 !important;
}
main .about-items-left .bio .bio-items-right .bio-text-3 {
  margin-top: 1.8vw;
  color: #cabdd1 !important;
}
main .about-items-left .education {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 18vw;
  width: 40vw;
  padding: 1.5vw;
  justify-content: center;
  gap: 1.5vw;
  border-radius: 0.5vw;
  border: 0.06vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.6vw);
}
main .about-items-left .education .darkened-text {
  color: #cabdd1 !important;
}
main .about-items-left .experience-years {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 12vw;
  width: 40vw;
  padding: 1.5vw;
  justify-content: center;
  gap: 1.5vw;
  border-radius: 0.5vw;
  border: 0.06vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.6vw);
}
main .about-items-left .experience-years .experience-row {
  width: 100%;
  display: flex;
  flex-direction: rows;
  justify-content: space-between;
}
main .about-items-left .experience-years .experience-row .experience-token {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .about-items-left .experience-years .experience-row .experience-token .xp {
  width: fit-content;
  margin-top: 0.5vw;
  text-align: center;
  padding: 0.1vw 0.5vw 0.1vw 0.5vw;
  background: rgba(89, 63, 255, 0.1254901961);
  border-radius: 0.2vw;
  color: white;
}
main .about-items-right {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
main .about-items-right .skills {
  display: flex;
  flex-direction: column;
  width: 40vw;
  height: 20vw;
  padding: 1.5vw;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5vw;
  border-radius: 0.5vw;
  border: 0.06vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.6vw);
}
main .about-items-right .skills h3 {
  width: 100% !important;
  line-height: 0.8;
}
main .about-items-right .skills p {
  color: #cabdd1 !important;
}
main .about-items-right .experience {
  display: flex;
  flex-direction: column;
  width: 40vw;
  height: 31vw;
  padding: 1.5vw;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5vw;
  flex-shrink: 0;
  border-radius: 0.5vw;
  border: 0.06vw solid #2A2240;
  background: #1E0C30;
  backdrop-filter: blur(0.6vw);
}
main .about-items-right .experience p {
  color: #cabdd1 !important;
}

.projects-title-container {
  width: 100%;
  padding: 10vw 10vw 2vw 10vw;
}

.chips-wrapper {
  padding-left: 9.5vw;
}

.projects-section-main {
  position: relative;
  height: auto;
  width: 100%;
  padding: 0vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.projects-section-main .chips-container {
  display: flex;
  margin-bottom: -2vw;
}
.projects-section-main .project-section-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
}
.projects-section-main .project-section-title svg {
  height: 1.5vw;
}
.projects-section-main .project-card-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 3.7vw;
  gap: 2vw;
}
.projects-section-main .project-card-row a {
  text-decoration: none;
  width: fit-content;
}
.projects-section-main .project-card-row .project-card {
  position: relative;
  width: 18vw;
}

@media (max-width: 768px) {
  header {
    display: none;
  }
  .pointer-blue {
    position: absolute;
    top: 131% !important;
    right: 50% !important;
    height: 3vw !important;
    z-index: 10;
  }
  .pointer-green {
    position: absolute;
    top: 85% !important;
    right: 29% !important;
    height: 3vw !important;
    z-index: 10;
  }
  .pointer-purple {
    position: absolute;
    top: 25% !important;
    right: 33% !important;
    height: 3vw !important;
    z-index: 10;
  }
  .pointer-yellow {
    position: absolute;
    top: 70% !important;
    left: 38% !important;
    height: 3vw !important;
    z-index: 10;
  }
  .hero-banner {
    height: 200vw;
    width: 100%;
    margin-top: 15vw;
    margin-bottom: 45vw;
    flex-direction: column !important;
    padding: 0vw 5vw 0vw 5vw !important;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-banner .menu-bg {
    position: absolute;
    top: -10%;
    left: 0%;
    width: 10em;
    height: 20em;
    flex-shrink: 0;
    background-color: #9D5088;
    filter: blur(222px);
    z-index: -1;
  }
  .hero-banner .hero-items-left {
    width: fit-content;
  }
  .hero-banner .hero-items-left .intro-pill {
    display: flex;
    align-items: center;
    gap: 4vw;
  }
  .hero-banner .hero-items-left .intro-pill .location {
    display: flex;
    padding: 1vw 2vw 1vw 1vw;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: rgba(166, 157, 157, 0.2);
  }
  .hero-banner .hero-items-left .intro-pill .socials {
    gap: 4vw;
  }
  .hero-banner .hero-items-left .intro-pill svg {
    height: 8vw;
  }
  .hero-banner .hero-items-left .text-button {
    display: none;
  }
  .hero-banner .hero-items-left .primary-button {
    margin-top: 8vw !important;
  }
  .hero-banner .hero-items-left .secondary-button {
    display: flex;
  }
  .hero-banner .hero-items-right {
    position: relative;
    width: 150%;
    height: 100%;
  }
  .hero-banner .hero-items-right img {
    position: absolute;
    right: -30vw !important;
  }
  .hero-banner .hero-items-right .bg-circle {
    display: none;
    position: absolute;
    top: -20%;
    z-index: -1;
  }
  .hero-banner .hero-items-right .hero-banner-card {
    position: absolute;
    top: 60%;
    left: 25%;
    z-index: -1;
  }
  .hero-banner .hero-items-right .hero-banner-card:nth-child(1) {
    top: 120%;
    left: 45%;
    z-index: -1;
  }
  .hero-banner .hero-items-right .hero-banner-card:nth-child(2) {
    top: 15%;
    left: 50%;
    z-index: 1;
  }
  .hero-banner .hero-items-right .hero-banner-card:nth-child(3) {
    top: 75%;
    left: 60%;
    z-index: 1;
  }
  .projects-section {
    display: none;
  }
  .projects-section .text-button {
    display: none;
  }
  .projects-section-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 10vw;
  }
  .projects-section-mobile .button-wrapper {
    padding: 0vw 8vw 0vw 8vw !important;
  }
  .projects-section-mobile .project-card-row-wrapper {
    height: fit-content;
    width: 100%;
    padding: 0vw 5vw 0vw 5vw !important;
    position: relative; /* Add relative positioning for the pseudo-element */
    overflow-x: auto; /* Enable horizontal scrolling */
    /* Hide the scrollbar without impacting horizontal scroll */
  }
  .projects-section-mobile .project-card-row-wrapper::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  .projects-section-mobile .project-card-row-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .projects-section-mobile .project-card-row-wrapper::before {
    content: ""; /* Create a pseudo-element for the right padding */
    width: 24px; /* Set the desired right padding */
    flex: 0 0 auto;
  }
  .projects-section-mobile .section-intro {
    gap: 4vw !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0vw 5vw 0vw 5vw !important;
  }
  .projects-section-mobile .section-intro p {
    font-size: 1vw;
    color: white;
    margin-top: -1vw;
  }
  .projects-section-mobile .section-intro div {
    display: flex;
    align-items: center;
    height: fit-content;
  }
  .projects-section-mobile .section-intro div svg {
    fill: white;
    height: 8vw !important;
  }
  .projects-section-mobile .section-intro button {
    position: relative;
    animation: verticalMovement 1s infinite alternate ease-in-out;
  }
  .projects-section-mobile .section-intro button svg {
    margin-left: 0.5vw;
  }
  .projects-section-mobile .section-intro button:hover {
    animation-play-state: paused;
  }
  .projects-section-mobile .section-intro span {
    margin: 0vw 0.2vw 0.2vw 0vw;
    color: #5A3FFF;
    font-size: 2vw;
  }
  .projects-section-mobile .project-card-row {
    display: inline-flex; /* Display cards in a row */
    gap: 6vw; /* Space between cards */
    transition: transform 0.3s ease; /* Smooth transition when scrolling */
  }
  .projects-section-mobile .project-card-row a {
    text-decoration: none;
    width: fit-content;
  }
  .methodology-section {
    display: none;
  }
  .methodology-section-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 10vw;
    margin-top: 15vw;
    margin-bottom: 15vw;
  }
  .methodology-section-mobile .methodology-card-row-wrapper {
    height: fit-content;
    width: 100%;
    padding: 0vw 5vw 0vw 5vw !important;
    position: relative; /* Add relative positioning for the pseudo-element */
    overflow-x: auto; /* Enable horizontal scrolling */
    /* Hide the scrollbar without impacting horizontal scroll */
  }
  .methodology-section-mobile .methodology-card-row-wrapper::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  .methodology-section-mobile .methodology-card-row-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .methodology-section-mobile .methodology-card-row-wrapper::before {
    content: ""; /* Create a pseudo-element for the right padding */
    width: 24px; /* Set the desired right padding */
    flex: 0 0 auto;
  }
  .methodology-section-mobile .methodology-card-row-wrapper:nth-child(3) {
    margin-top: -5vw;
  }
  .methodology-section-mobile .methodology-card-row-wrapper:nth-child(4) {
    margin-top: -5vw;
  }
  .methodology-section-mobile .section-intro {
    gap: 4vw !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0vw 5vw 0vw 5vw !important;
    margin-bottom: 4vw;
  }
  .methodology-section-mobile .section-intro p {
    font-size: 1vw;
    color: white;
    margin-top: -1.5vw;
  }
  .methodology-section-mobile .section-intro div {
    display: flex;
    align-items: center;
  }
  .methodology-section-mobile .section-intro div svg {
    fill: white;
    height: 8vw !important;
  }
  .methodology-section-mobile .section-intro button {
    position: relative;
    animation: verticalMovement 1s infinite alternate ease-in-out;
  }
  .methodology-section-mobile .section-intro button svg {
    margin-left: 0.5vw;
  }
  .methodology-section-mobile .section-intro button:hover {
    animation-play-state: paused;
  }
  .methodology-section-mobile .section-intro span {
    margin: 0vw 0.2vw 0.2vw 0vw;
    color: #5A3FFF;
    font-size: 2vw;
  }
  .methodology-section-mobile .methodology-card-row {
    display: inline-flex; /* Display cards in a row */
    gap: 6vw; /* Space between cards */
    transition: transform 0.3s ease; /* Smooth transition when scrolling */
  }
  .methodology-section-mobile .methodology-card-row a {
    text-decoration: none;
    width: fit-content;
  }
  .projects-section-main {
    display: none;
  }
  .spacer {
    margin-bottom: 20vw;
  }
  .about-main {
    flex-direction: column;
    padding: 0vw 5vw 0vw 5vw !important;
    gap: 4vw;
  }
  .about-main .about-items-left {
    gap: 4vw;
  }
  .about-main .about-items-left .bio {
    padding: 4vw;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 8vw;
  }
  .about-main .about-items-left .bio .bio-img {
    height: 40vw !important;
  }
  .about-main .about-items-left .education {
    width: 100%;
    height: 100%;
    padding: 4vw;
    gap: 4vw;
  }
  .about-main .about-items-left .experience-years {
    width: 100%;
    height: 100%;
    padding: 4vw;
    gap: 4vw;
  }
  .about-main .about-items-left .experience-years .experience-token {
    gap: 2vw;
    align-items: flex-start !important;
  }
  .about-main .about-items-left .experience-years .experience-token .experience-token-title {
    width: 90%;
  }
  .about-main .about-items-right {
    gap: 4vw;
  }
  .about-main .about-items-right .skills {
    width: 100%;
    height: 100%;
    padding: 4vw;
    gap: 4vw;
  }
  .about-main .about-items-right .skills h3 {
    width: 100%;
  }
  .about-main .about-items-right .experience {
    width: 100%;
    height: 100%;
    height: fit-content;
    padding: 4vw;
    gap: 4vw;
  }
  .soon {
    background-size: 200%, contain;
  }
  .commingsoon-main {
    width: 100%;
  }
  .commingsoon-main .page-title {
    top: 25%;
    width: 80%;
    padding: 4vw;
    gap: 2vw;
    text-align: center !important;
    border-radius: 1.4vw !important;
  }
  .double-row {
    flex-direction: column !important;
  }
  .double-row .code-embed {
    width: 100% !important;
  }
  .maws-hero .primary-button {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  .project-intro {
    margin-top: 5vw;
  }
  .project-intro h2 {
    line-height: 8vw;
  }
  .project-intro .project-intro-triple {
    padding: 5vw 0vw 5vw 0vw !important;
    flex-direction: column;
    gap: 5vw;
    justify-content: flex-start !important;
  }
  .project-content-section {
    margin-top: 5vw;
  }
  .project-content-section h2 {
    margin-bottom: 5vw !important;
  }
  .project-content-section h3 {
    margin-bottom: 3vw !important;
    margin-top: 3vw !important;
  }
  .project-content-section iframe {
    height: 180vw !important;
    margin-top: 10vw !important;
    margin-bottom: 10vw !important;
  }
  .project-content-section .code-embed {
    padding: 5vw !important;
    width: 100% !important;
  }
  .project-content-section .github-button {
    margin-bottom: 5vw;
  }
  .project-content-section .code-structure {
    width: 100% !important;
  }
  .project-content-section .double-row {
    gap: 8vw !important;
  }
  .project-content-section .double-row img {
    width: 100% !important;
  }
  .project-content-section .double-row iframe {
    width: 80vw !important;
    height: 50vw !important;
  }
  .project-content-section .double-row-align-start {
    flex-direction: column;
    width: 100%;
    gap: 8vw;
  }
  .project-content-section .double-row-align-start img {
    width: 100% !important;
  }
  .project-content-section .double-row-align-start .accordion {
    margin-top: 4vw;
  }
  .project-content-section .focus-intro-features-wrapper {
    margin-top: 2vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2vw;
  }
  .project-content-section .focus-intro-features-wrapper .intro-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    width: 100%;
  }
  .project-content-section .focus-intro-features-wrapper .intro-feature p {
    font-weight: 200;
  }
  .cascade8-hero .tags {
    gap: 1vw !important;
  }
  .navigation-button-group {
    margin-top: 8vw;
    padding: 0vw !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vw;
  }
  .navigation-button-group .navigation-button-row-container {
    flex-direction: column;
    margin-top: 8vw;
    display: flex;
    gap: 4vw !important;
  }
  .navigation-button-group .navigation-button-row-container .navigation-button-group-column {
    display: flex;
    flex-direction: column;
    gap: 4vw !important;
  }
  .column {
    margin-top: 8vw;
    gap: 4vw !important;
  }
}
.soon {
  background-image: url(/assets/images/comingsoonbg.png), linear-gradient(105.14deg, #000000 21.49%, #5D2BAB 169.37%);
  background-position: center;
  background-size: 70%, contain;
  background-repeat: no-repeat;
  background-attachment: local, scroll;
  position: relative;
}

.commingsoon-main {
  overflow: none !important;
  padding: 9.5vw !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
}
.commingsoon-main .page-title {
  padding: 1vw;
  position: fixed;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0.4vw;
  background: rgba(166, 157, 157, 0.082);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.commingsoon-main .primary-button {
  margin-top: 2vw;
}
.commingsoon-main .primary-button svg {
  transform: rotate(180deg);
  margin-right: 1vw;
}

.soon-footer {
  position: absolute;
  bottom: 0%;
  width: 100vw;
}
.soon-footer section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.maws-hero {
  position: relative;
  height: auto;
  width: 100%;
  padding: 10vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.maws-hero .tags {
  display: flex;
  width: 100%;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.maws-hero .tags .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(94, 183, 145, 0.1);
  color: #5EB791;
}
.maws-hero .tags .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(187, 60, 247, 0.1);
  color: #BB3CF7;
}
.maws-hero .tags .tag-regular:nth-child(3) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
  color: #FFCC6A;
}
.maws-hero .tags .tag-regular:nth-child(4) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.maws-hero .tags .hide-tag {
  opacity: 0;
}
.maws-hero .primary-button {
  z-index: 0;
  gap: 1vw;
}
.maws-hero .project-banner-container {
  position: relative;
  padding: 2vw;
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
}
.maws-hero .project-banner-container img {
  box-shadow: 0px 14px 50px 7px rgba(0, 0, 0, 0.29);
  border-radius: 1vw;
}
.maws-hero .project-banner-container .maws-reveal-1 {
  top: 43%;
  left: 23%;
}
.maws-hero .project-banner-container .maws-message-box-1 {
  top: 48%;
  left: 26%;
}
.maws-hero .project-banner-container .maws-reveal-2 {
  top: 13%;
  left: 33%;
}
.maws-hero .project-banner-container .maws-message-box-2 {
  top: 18%;
  left: 36%;
}
.maws-hero .project-banner-container .maws-reveal-3 {
  top: 53%;
  left: 73%;
}
.maws-hero .project-banner-container .maws-message-box-3 {
  top: 58%;
  left: 76%;
}

.project-intro {
  padding: 0vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
}
.project-intro a {
  color: #ffffff;
}
.project-intro a:hover + .maws-youtube {
  visibility: visible;
}
.project-intro .maws-youtube {
  top: -5%;
  left: 50%;
  position: absolute;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  flex-direction: row;
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
  width: fit-content;
  padding: 0.5vw;
}
.project-intro .maws-youtube svg {
  height: 1.5vw;
}
.project-intro .maws-youtube svg:nth-child(1) {
  height: 2vw;
}
.project-intro .project-intro-triple {
  padding: 0vw 10vw 0vw 10vw;
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
}
.project-intro .project-intro-triple span {
  background: rgba(255, 204, 106, 0.1);
  border-radius: 0.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2vw 0.5vw 0.2vw 0.5vw;
  gap: 0.5vw;
  width: fit-content;
  margin-bottom: 1vw;
}
.project-intro .project-intro-triple span p {
  color: #FFCC6A;
}
.project-intro .project-intro-triple span svg {
  height: 1vw;
  fill: #FFCC6A !important;
}

.project-content-section {
  padding: 4vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.project-content-section iframe {
  margin-top: 1vw;
  margin-bottom: 1vw;
  width: 100%;
  height: 40vw;
  border-radius: 0.5vw;
}
.project-content-section .double-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4vw;
}
.project-content-section .double-row iframe {
  width: 40vw;
  height: 20vw;
}
.project-content-section .double-row img {
  width: 50%;
}
.project-content-section .double-row .extra-margin {
  margin-top: 4vw !important;
}
.project-content-section .double-row .code-structure {
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
  padding: 1vw;
}
.project-content-section .double-row .animated-image {
  width: auto;
  border-radius: 50%;
  height: fit-content;
  width: fit-content;
  width: auto;
  z-index: -10;
  display: inline-flex;
  padding: 16px 8px 16px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  border-radius: 8px;
  background: rgba(198, 198, 198, 0.06);
  backdrop-filter: blur(3.4919371605px);
  font-family: #ffffff;
  color: #979797;
  overflow: hidden;
}
.project-content-section .double-row .animated-image img {
  width: 100%;
}
.project-content-section .double-row .animated-image .beat-title {
  margin-left: 0.5vw !important;
  font-size: 1.5vw;
}
.project-content-section .double-row .animated-image .key {
  color: #515151;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 2vw !important;
  margin-left: 0.5vw;
}
.project-content-section .double-row .animated-image .key svg {
  height: 0.6em;
}
.project-content-section .double-row .animated-image ul {
  margin-left: -1.5vw;
  margin-top: 1vw;
  display: flex;
  width: 100%;
}
.project-content-section .double-row .animated-image ul ul {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  transition: ease 0.2s;
  position: relative;
}
.project-content-section .double-row .animated-image ul li {
  list-style: none;
  height: 48px;
  width: 8px;
  border-radius: 10px;
  background: rgba(35, 108, 100, 0.5058823529);
  margin: 0 3px;
  padding: 0;
  animation-name: wave4;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: ease 0.2s;
}
.project-content-section .double-row .animated-image ul li:nth-child(2) {
  animation-name: wave2;
  animation-delay: 0.2s;
}
.project-content-section .double-row .animated-image ul li:nth-child(3) {
  animation-name: wave3;
  animation-delay: 0.23s;
  animation-duration: 0.4s;
}
.project-content-section .double-row .animated-image ul li:nth-child(4) {
  animation-name: wave4;
  animation-delay: 0.1s;
  animation-duration: 0.3s;
}
.project-content-section .double-row .animated-image ul li:nth-child(5) {
  animation-delay: 0.5s;
}
.project-content-section .double-row .animated-image ul li:nth-child(6) {
  animation-name: wave2;
  animation-duration: 0.5s;
}
.project-content-section .double-row .animated-image ul li:nth-child(8) {
  animation-name: wave4;
  animation-delay: 0.4s;
  animation-duration: 0.25s;
}
.project-content-section .double-row .animated-image ul li:nth-child(9) {
  animation-name: wave3;
  animation-delay: 0.15s;
}
.project-content-section .double-row .animated-image ul li:nth-child(10) {
  animation-delay: 0.5s;
}
.project-content-section .double-row .animated-image ul li:nth-child(11) {
  animation-name: wave2;
  animation-duration: 0.5s;
}
.project-content-section .double-row .animated-image ul li:nth-child(12) {
  animation-name: wave3;
  animation-delay: 0.4s;
  animation-duration: 0.25s;
}
.project-content-section .double-row .animated-image ul li:nth-child(13) {
  animation-name: wave4;
  animation-delay: 0.15s;
}
.project-content-section .double-row .animated-image ul li:nth-child(14) {
  animation-name: wave3;
  animation-duration: 0.5s;
}
.project-content-section .double-row .animated-image ul li:nth-child(15) {
  animation-name: wave2;
  animation-delay: 0.1s;
  animation-duration: 0.25s;
}
.project-content-section .double-row .animated-image ul li:nth-child(16) {
  animation-name: wave3;
  animation-duration: 0.15s;
}
.project-content-section .double-row .animated-image ul li:nth-child(17) {
  animation-name: wave4;
  animation-delay: 0.1s;
  animation-duration: 0.25s;
}
.project-content-section .double-row .animated-image ul li:nth-child(18) {
  animation-name: wave3;
  animation-duration: 0.5s;
}
@keyframes wave1 {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0.5);
  }
}
@keyframes wave2 {
  from {
    transform: scaleY(0.3);
  }
  to {
    transform: scaleY(0.6);
  }
}
@keyframes wave3 {
  from {
    transform: scaleY(0.6);
  }
  to {
    transform: scaleY(0.8);
  }
}
@keyframes wave4 {
  from {
    transform: scaleY(0.2);
  }
  to {
    transform: scaleY(0.5);
  }
}
.project-content-section .alignement-fix {
  align-items: flex-start !important;
  padding-top: 1vw;
}
.project-content-section .code-embed {
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
  padding: 1vw;
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1vw;
}
.project-content-section .extra-margin {
  margin-top: 2vw;
}

.datalab-hero {
  position: relative;
  height: auto;
  width: 100%;
  padding: 10vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.datalab-hero .tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.datalab-hero .tags .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(94, 183, 145, 0.1);
  color: #5EB791;
}
.datalab-hero .tags .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(187, 60, 247, 0.1);
  color: #BB3CF7;
}
.datalab-hero .tags .tag-regular:nth-child(3) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
  color: #FFCC6A;
}
.datalab-hero .tags .tag-regular:nth-child(4) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.datalab-hero .tags .tag-regular:nth-child(5) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(60, 100, 247, 0.1);
  color: #3C64F7;
}
.datalab-hero .tags .hide-tag {
  opacity: 0;
}
.datalab-hero .primary-button {
  z-index: 0;
  gap: 1vw;
}
.datalab-hero .project-banner-container {
  position: relative;
  padding: 2vw;
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
}
.datalab-hero .project-banner-container img {
  box-shadow: 0px 14px 50px 7px rgba(0, 0, 0, 0.29);
  border-radius: 1vw;
}

#reduce-text-width p {
  max-width: 1440px;
}

.cascade8-hero {
  position: relative;
  height: auto;
  width: 100%;
  padding: 10vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.cascade8-hero .tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.cascade8-hero .tags .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(94, 183, 145, 0.1);
  color: #5EB791;
}
.cascade8-hero .tags .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(187, 60, 247, 0.1);
  color: #BB3CF7;
}
.cascade8-hero .tags .tag-regular:nth-child(3) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
  color: #FFCC6A;
}
.cascade8-hero .tags .tag-regular:nth-child(4) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.cascade8-hero .tags .tag-regular:nth-child(5) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(60, 100, 247, 0.1);
  color: #3C64F7;
}
.cascade8-hero .tags .hide-tag {
  opacity: 0;
}
.cascade8-hero .primary-button {
  z-index: 0;
  gap: 1vw;
}
.cascade8-hero .project-banner-container {
  position: relative;
  padding: 2vw;
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
}
.cascade8-hero .project-banner-container img {
  box-shadow: 0px 14px 50px 7px rgba(0, 0, 0, 0.29);
  border-radius: 1vw;
}

.project-intro {
  padding: 0vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
}
.project-intro .project-intro-triple {
  padding: 0vw 10vw 0vw 10vw;
  margin-top: 4vw;
  display: flex;
  justify-content: space-around !important;
  gap: 4vw;
}
.project-intro .project-intro-triple span {
  background: rgba(255, 204, 106, 0.1);
  border-radius: 0.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2vw 0.5vw 0.2vw 0.5vw;
  gap: 0.5vw;
  width: fit-content;
  margin-bottom: 1vw;
}
.project-intro .project-intro-triple span p {
  color: #FFCC6A;
}
.project-intro .project-intro-triple span svg {
  height: 1vw;
  fill: #FFCC6A !important;
}
.project-intro .navigation-button-group {
  padding: 8vw 0vw 8vw 0vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vw;
}
.project-intro .navigation-button-group .navigation-button-row-container {
  display: flex;
  gap: 2vw;
}
.project-intro .navigation-button-group .navigation-button-row-container .navigation-button-group-column {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.focus-intro {
  display: flex;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.focus-intro .problem-statement {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2vw;
}
.focus-intro a {
  text-decoration-color: white;
  transition: 0.3s;
}
.focus-intro a:hover {
  transform: translateY(2px);
  transition: 0.3s;
}

.focus-intro-features-wrapper {
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2vw;
}
.focus-intro-features-wrapper .intro-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  width: 25vw;
}
.focus-intro-features-wrapper .intro-feature p {
  font-weight: 200;
}

.double-row-align-start {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4vw;
  margin-top: 8vw !important;
}
.double-row-align-start img {
  width: 50%;
}

.double-row-centered {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.double-row-centered img {
  width: 50%;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
}

.divider {
  height: 0.1vw;
  background-color: white;
  width: 100%;
}

.minus-margin {
  margin-top: -4vw !important;
}

.dvore-hero {
  position: relative;
  height: auto;
  width: 100%;
  padding: 10vw 9.5vw 4vw 9.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.dvore-hero .tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.dvore-hero .tags .tag-regular:nth-child(1) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(94, 183, 145, 0.1);
  color: #5EB791;
}
.dvore-hero .tags .tag-regular:nth-child(2) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(187, 60, 247, 0.1);
  color: #BB3CF7;
}
.dvore-hero .tags .tag-regular:nth-child(3) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(255, 204, 106, 0.1);
  color: #FFCC6A;
}
.dvore-hero .tags .tag-regular:nth-child(4) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(247, 60, 172, 0.1);
  color: #F73CAC;
}
.dvore-hero .tags .tag-regular:nth-child(5) {
  display: flex;
  padding: 0.2vw 0.5vw;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 0.2vw;
  background: rgba(60, 100, 247, 0.1);
  color: #3C64F7;
}
.dvore-hero .tags .hide-tag {
  opacity: 0;
}
.dvore-hero .primary-button {
  z-index: 0;
  gap: 1vw;
}
.dvore-hero .project-banner-container {
  position: relative;
  padding: 2vw;
  background: rgba(166, 157, 157, 0.3);
  backdrop-filter: blur(4.5px);
  border-radius: 1vw;
}
.dvore-hero .project-banner-container img {
  box-shadow: 0px 14px 50px 7px rgba(0, 0, 0, 0.29);
  border-radius: 1vw;
}
.dvore-hero .project-banner-container p {
  padding-top: 2vw;
}

.minus-margin-small {
  margin-top: 2vw !important;
}