* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(12, 12, 12, 0.16) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  overflow: hidden;
}
body #code-loader {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  background-color: #1B1C1E;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 6;
  color: #eaebed;
  font-weight: bold;
  font-size: 100px;
}
body #code-loader span {
  display: inline-block;
  animation: pulse_414 0.4s alternate infinite ease-in-out;
  opacity: 0.4;
}
body #code-loader span:nth-child(odd) {
  animation-delay: 0.4s;
  opacity: 1;
}
body #code-loader span:nth-child(even) {
  opacity: 1;
}

header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  height: 10vh;
  position: relative;
}
header .grpButton {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  background-color: #1d1d27;
  color: #eaebed;
  border-radius: 10rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  width: 8.5rem;
  height: 3.3rem;
}
header .grpButton .toggle {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  color: #eaebed;
  border: none;
  outline: none;
  font-size: 1.6rem;
  cursor: pointer;
}
header .grpButton .toggle:hover {
  color: rgba(175, 171, 182, 0.1254901961);
  transition: 0.5s;
}
header .grpButton .openBtn {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  color: #eaebed;
  font-size: 1.6rem;
  border: none;
  outline: none;
  cursor: pointer;
}
header .grpButton .openBtn:hover {
  color: rgba(175, 171, 182, 0.1254901961);
  transition: 0.5s;
}

.sidePanel {
  background-color: #202024;
  width: 0;
  height: 300px;
  top: 0;
  right: 0;
  position: fixed;
  overflow-x: hidden;
  transition: 0.5s;
  padding: 60px 0 0 0;
  z-index: 3;
  border-radius: 0 0 0 1rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
}
.sidePanel .navMenu {
  list-style: none;
}
.sidePanel .navMenu li a {
  padding: 1rem 1rem 1rem 4rem;
  text-decoration: none;
  font-size: 1.5rem;
  color: #eaebed;
  display: block;
}
.sidePanel .navMenu li a ion-icon {
  padding: 0 1rem 0 0;
  color: #ffaf2a;
  font-size: 1.5rem;
  opacity: 0.4;
}
.sidePanel .navMenu li .closedBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.sidePanel .navMenu li .closedBtn i {
  font-size: 2rem;
  color: #eaebed;
}

.sidePanel:has(.item:hover) .item:not(:hover) {
  opacity: 0.1;
}

.darkMode {
  background-color: #1B1C1E;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  transition: 0.5s;
}
.darkMode .grpButton {
  background-color: #eaebed;
}
.darkMode .grpButton .toggle {
  color: #1d1d27;
}
.darkMode .grpButton .toggle:hover {
  color: #AFABB6;
}
.darkMode .grpButton .openBtn {
  color: #1d1d27;
}
.darkMode .grpButton .openBtn:hover {
  color: #AFABB6;
}
.darkMode .sidePanel {
  background-color: #202024;
}
.darkMode .sidePanel .navMenu li a {
  color: #eaebed;
}
.darkMode .sidePanel .navMenu li a ion-icon {
  color: #ffaf2a;
  opacity: 0.4;
}
.darkMode .sidePanel .navMenu li .closedBtn i {
  color: #eaebed;
}
.darkMode .sidePanel:has(.item:hover) .item:not(:hover) {
  opacity: 0.15;
}
.darkMode .secContainer #modal {
  background-color: #202024;
}
.darkMode .secContainer #modal h2 {
  color: #eaebed;
}
.darkMode .secContainer #modal h2 ion-icon {
  color: #ffaf2a;
}
.darkMode .secContainer #modal #closeBtn {
  color: #eaebed;
}
.darkMode .secContainer #modal article ul li {
  color: #AFABB6;
}
.darkMode .secContainer #modal article ul li i {
  color: #ffaf2a;
}
.darkMode .secContainer #modal .cv-link {
  background-color: transparent;
  border: 3px solid rgba(175, 171, 182, 0.1254901961);
  color: #eaebed;
}
.darkMode .secContainer #modal .cv-link p {
  color: #eaebed;
}
.darkMode .secContainer #modal .cv-link i {
  background-color: #eaebed;
  border: 3px solid #1d1d27;
  color: #202024;
}
.darkMode .secContainer #modal .cv-link:hover i {
  background-color: #ffaf2a;
  border: 3px solid #202024;
  color: #1d1d27;
}
.darkMode .secContainer .secContent h1 {
  color: #1B1C1E;
  text-shadow: -1px -1px 0 #eaebed, 1px -1px 0 #eaebed, -1px 1px 0 #eaebed, 1px 1px 0 #eaebed;
}
.darkMode .secContainer .secContent span {
  color: #AFABB6;
  opacity: 1;
}
.darkMode .secContainer .secContent p {
  color: #AFABB6;
}
.darkMode .secContainer .secContent .section-links a {
  color: #eaebed;
}

.secContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  height: 90vh;
  text-align: start;
  z-index: 2;
  position: relative;
}
.secContainer #overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.secContainer #modal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #eaebed;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  position: fixed;
  top: auto;
  left: auto;
  width: 35rem;
  height: auto;
  z-index: 5;
  border-radius: 1rem;
  padding: 2rem;
  display: none;
  gap: 2rem;
}
.secContainer #modal h2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #202024;
  margin: 1rem 0 0 0;
}
.secContainer #modal #closeBtn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 3rem;
  color: #202024;
  opacity: 1;
  cursor: pointer;
}
.secContainer #modal article {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.secContainer #modal article ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: start;
  list-style: none;
}
.secContainer #modal article ul li {
  font-weight: 300;
  font-size: 1.2rem;
  color: #202024;
  opacity: 0.9;
}
.secContainer #modal article ul li #load {
  color: #ffaf2a;
}
.secContainer #modal article ul li i {
  color: #ffaf2a;
  font-size: 1.5rem;
  padding: 0 1rem 0 0;
}
.secContainer #modal .cv-link {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  background-color: #eaebed;
  border: 3px solid #202024;
  color: #202024;
  width: 7.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  padding: 0 0 0 1rem;
  cursor: pointer;
  position: relative;
}
.secContainer #modal .cv-link p {
  font-size: 1.2rem;
  color: #202024;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: lowercase;
  z-index: 3;
}
.secContainer #modal .cv-link i {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: #202024;
  border: 3px solid #eaebed;
  font-size: 1.2rem;
  color: #eaebed;
  height: 100%;
  width: 4rem;
  border-radius: 0.9rem;
  z-index: 4;
}
.secContainer #modal .cv-link:hover {
  padding: 0;
}
.secContainer #modal .cv-link:hover p {
  display: none;
}
.secContainer #modal .cv-link:hover i {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffaf2a;
  color: #1d1d27;
  width: 100%;
  font-size: 1.5rem;
  transition: 0.5s;
}
.secContainer .secContent {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}
.secContainer .secContent h1 {
  color: #1d1d27;
  font-size: 4.5rem;
  font-weight: 800;
}
.secContainer .secContent span {
  color: #202024;
  font-weight: 500;
  text-transform: uppercase;
}
.secContainer .secContent p {
  font-size: 1.2rem;
  color: #202024;
  text-indent: 1rem;
  opacity: 0.75;
  margin: 1rem 0 1rem 0;
}
.secContainer .secContent #modalBtn {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  background-color: transparent;
  color: #ffaf2a;
  font-size: 1.1rem;
  width: 7rem;
  border: none;
  outline: none;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.secContainer .secContent #modalBtn i {
  color: #ffaf2a;
  font-size: 1.5rem;
}
.secContainer .secContent .section-links {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.8rem;
}
.secContainer .secContent .section-links a {
  text-decoration: none;
  color: #1d1d27;
}
.secContainer .secContent .section-links a i {
  font-size: 2.2rem;
}
.secContainer .secContent .section-links a:hover {
  color: #ffaf2a;
  transition: 0.5s ease-in-out;
}

@keyframes ocean {
  0%, 100% {
    border-radius: 40% 60% 70% 30%/40% 40% 60% 50%;
  }
  34% {
    border-radius: 70% 30% 50% 50%/30% 30% 70% 70%;
  }
  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
  }
}
@keyframes pulse_414 {
  to {
    transform: scale(0.8);
    opacity: 0.5;
  }
}
::-moz-selection {
  background-color: #ffaf2a;
  color: #eaebed;
}
::selection {
  background-color: #ffaf2a;
  color: #eaebed;
}

@media (min-width: 2000px) {
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: start;
  }
  .secContainer .secContent span {
    font-size: 1.5rem;
  }
  .secContainer .secContent p {
    width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1999px) {
  header .grpButton .toggle {
    font-size: 1.5rem;
    height: 3.3rem;
    width: 3.3rem;
  }
  header .grpButton .openBtn {
    font-size: 1.5rem;
    height: 3.3rem;
    width: 3.3rem;
  }
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: start;
  }
  .secContainer #modal {
    top: 10%;
  }
  .secContainer .secContent span {
    font-size: 1.1rem;
  }
  .secContainer .secContent p {
    width: 525px;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  header .grpButton .toggle {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  header .grpButton .openBtn {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
  }
  .secContainer #modal {
    top: auto;
    max-width: 90%;
    height: auto;
    padding: 3rem 2rem 2rem 2rem;
  }
  .secContainer #modal .cv-link {
    width: 7.5rem;
    height: 3.5rem;
    bottom: 0;
  }
  .secContainer #modal .cv-link i {
    width: 3.2rem;
    font-size: 1rem;
  }
  .secContainer #modal .cv-link:hover i {
    font-size: 1.5rem;
  }
  .secContainer .secContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .secContainer .secContent h1 {
    font-size: 3rem;
  }
  .secContainer .secContent span {
    font-size: 1rem;
  }
  .secContainer .secContent p {
    font-size: 1rem;
    width: 70%;
  }
}
@media (min-width: 770px) and (max-width: 999px) {
  header .grpButton .toggle {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  header .grpButton .openBtn {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
  }
  .secContainer #modal {
    top: auto;
    max-width: 90%;
    height: auto;
    padding: 3rem 2rem 2rem 2rem;
  }
  .secContainer #modal .cv-link {
    width: 7.5rem;
    height: 3.5rem;
    bottom: 0;
  }
  .secContainer #modal .cv-link i {
    width: 3.2rem;
    font-size: 1rem;
  }
  .secContainer #modal .cv-link:hover i {
    font-size: 1.5rem;
  }
  .secContainer .secContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .secContainer .secContent h1 {
    font-size: 3rem;
  }
  .secContainer .secContent span {
    font-size: 1rem;
  }
  .secContainer .secContent p {
    font-size: 1rem;
    width: 70%;
  }
}
@media (min-width: 430px) and (max-width: 769px) {
  header .grpButton .toggle {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  header .grpButton .openBtn {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  .secContainer #modal {
    top: 10%;
    max-width: 85%;
    height: auto;
    padding: 3rem 2rem 2rem 2rem;
  }
  .secContainer #modal .cv-link {
    width: 7.5rem;
    height: 3.5rem;
    bottom: 0;
  }
  .secContainer #modal .cv-link i {
    width: 3.2rem;
    font-size: 1rem;
  }
  .secContainer #modal .cv-link:hover i {
    font-size: 1.5rem;
  }
  .secContainer .secContent {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
  }
  .secContainer .secContent h1 {
    font-size: 3.5rem;
  }
  .secContainer .secContent span {
    font-weight: 500;
    font-size: 1rem;
  }
  .secContainer .secContent p {
    font-size: 1.15rem;
    text-align: start;
    width: 100%;
  }
}
@media (max-width: 429px) {
  header .grpButton .toggle {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  header .grpButton .openBtn {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
  }
  .secContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  }
  .secContainer #modal {
    top: 10%;
    max-width: 85%;
    height: auto;
    padding: 3rem 2rem 2rem 2rem;
  }
  .secContainer #modal .cv-link {
    width: 7.5rem;
    height: 3.5rem;
    bottom: 0;
  }
  .secContainer #modal .cv-link i {
    width: 3.5rem;
    font-size: 1rem;
  }
  .secContainer #modal .cv-link:hover i {
    font-size: 1.8rem;
  }
  .secContainer .secContent {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
  }
  .secContainer .secContent h1 {
    font-size: 2.75rem;
  }
  .secContainer .secContent span {
    font-weight: 500;
    font-size: 1rem;
  }
  .secContainer .secContent p {
    font-size: 1.15rem;
    width: 100%;
    text-align: start;
  }
}/*# sourceMappingURL=style.css.map */