/*  {
  outline: 1px solid red;
} */
:root {
  --white: #f7f8f9;
}

html {
  font-size: 65%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

html::-webkit-scrollbar-thumb {
  background: #5cd2b8;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%),
    inset -2px -2px 2px rgb(0 0 0 / 25%);
}
html::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #434343, #434343 1px, #111 0, #111);
}

body {
  counter-reset: section;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background: #040409;
  min-height: 100vh;
  width: 100%;
  color: var(--white);
  text-align: left;
  line-height: 1.3;
  overflow-x: hidden;
}

/* HAMBURGER MENU  */
.navigation {
  display: none;
  font-family: "Montserrat", sans-serif;
}

.navigation-button {
  background-color: #fff;
  border-radius: 50%;
  color: #5cd2b8;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 200;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.nav-links a {
  font-size: 2rem;
}

.navigation-button:focus {
  outline: none;
}

.navigation-background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 3rem;
  right: 3rem;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation-nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;

  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation-list {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-43%, -50%);
  list-style: none;
  text-align: center;
}
.navigation-item {
  margin: 1rem;
  font-family: "Montserrat", sans-serif;
}

.navigation-link:link,
.navigation-link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 1.5rem;
  /* color: #8892b0; */
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  );
  background-size: 230%;
  transition: all 0.4s;
}

.navigation-link:hover,
.navigation-link:active {
  background-position: 100%;
  color: #5cd2b8;
  transform: translateX(1rem);
}

.navigation-checkbox {
  display: none;
}

.navigation-checkbox:checked ~ .navigation-background {
  transform: scale(80);
}

.navigation-checkbox:checked ~ .navigation-nav {
  opacity: 1;
  width: 100%;
}

/* NAVIGATION ICON */
#navigation-icon {
  position: relative;
  margin-top: 3.5rem;
  cursor: pointer;
}
#navigation-icon,
#navigation-icon::before,
#navigation-icon::after {
  content: "";
  font-size: 2rem !important;
  width: 3rem;
  left: 0;
  height: 2px;
  background-color: #5cd2b8;
  display: inline-block;
  transition: all 0.4s;
}

#navigation-icon::before {
  position: absolute;
  top: -0.8rem;
}

#navigation-icon::after {
  position: absolute;
  top: 0.8rem;
}

.navigation-button:hover #navigation-icon::before {
  top: -1rem;
}

.navigation-button:hover #navigation-icon::after {
  top: 1rem;
}

.navigation-checkbox:checked + .navigation-button #navigation-icon {
  background: transparent;
}

.navigation-checkbox:checked + .navigation-button #navigation-icon::before {
  transform: rotate(135deg);
  top: 0;
}

.navigation-checkbox:checked + .navigation-button #navigation-icon::after {
  top: 0;
  transform: rotate(-135deg);
}

main {
  margin: auto;
  width: 100%;
  max-width: 1600px;
  min-height: 100vh;
}

section {
  margin: 0px auto;
  padding: 50px;
  width: 100%;
}

/* Navigation  */
.header {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 11;
  padding: 0px 50px;
  width: 100%;
  height: 80px;
  background: transparent;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  filter: none !important;
  pointer-events: auto !important;
  user-select: auto !important;
}

nav {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  color: var(--white);
  font-family: fantasy;
  counter-reset: item 0;
  z-index: 12;
}

.hexagon-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.hexagon {
  background-image: radial-gradient(
    circle at 50% 15%,
    hsl(214, 47%, 23%),
    hsl(237, 49%, 15%)
  );
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  -webkit-clip-path: polygon(
    25% 5%,
    75% 5%,
    100% 50%,
    75% 95%,
    25% 95%,
    0% 50%
  );
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#hexagon-clip");
  clip-path: url("#hexagon-clip");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}

a.hexagon:hover {
  filter: brightness(110%);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.hexagon-text {
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: #5cd2b8;
  font-size: 2rem;
  user-select: none;
}

.links-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.links-wrapper ol {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.links-wrapper ol li {
  margin: 0px 5px;
  position: relative;
  counter-increment: item 1;
  font-size: 1.5rem;
}

.links-wrapper ol li a {
  padding: 10px;
  letter-spacing: 3px;
}

.links-wrapper ol li a::before {
  content: "0" counter(item) ".";
  margin-right: 5px;
  color: #5cd2b8;
  font-size: 1.3rem;
  text-align: right;
}

nav .resume-btn {
  color: #5cd2b8;
  background-color: transparent;
  border: 1px solid #5cd2b8;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: fantasy;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin-left: 15px;
  font-size: 1.3rem;
}

.links-wrapper .resume-btn::before {
  content: "";
}

a {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  color: inherit;
  position: relative;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 4.5rem;
}

/* Left side icons */
.left-icons {
  width: 20px;
  height: 20px;
  position: fixed;
  bottom: 320px !important;
  left: 60px;
  right: auto;
  z-index: 10;
  color: var(--white);
}

.social-list {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.social-list::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  margin: 15px auto;
  background-color: #8892b0;
}
.social-list li a {
  padding: 15px;
}

.social-list li a svg {
  width: 25px;
  height: 25px;
}

svg {
  vertical-align: middle;
}

a:hover {
  color: #5cd2b8;
  transform: translateY(-3px) scale(1.08);
}

.hero {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 100px) !important;
  margin-top: 100px !important;
}

.intro h1 {
  color: #5cd2b8;
  margin: 0px 0px 30px 4px;

  line-height: 1.1;
}

.wave {
  position: relative;
  font-size: 4rem;
  margin-bottom: 5px;
  animation: moveInLeft 1s ease-out;
}

.greating {
  animation: moveRight 1s ease-out;
}

.big-heading {
  margin: 0px;
  font-size: clamp(30px, 4vw, 70px);
}

h1 {
  font-size: 2rem;
  margin-top: 0;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  color: #ccd6f6;
}

.job h3 {
  margin-top: 10px;
  color: #8892b0;
  line-height: 1.08;
  font-weight: medium;
}

.description p {
  margin: 25px 0px 50px;
  max-width: 500px;
}

p {
  color: var(--white);
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-size: 1.8rem;
  margin-left: 0;
  text-align: left;
  font-weight: normal;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.image-container {
  width: 45rem;
  margin-left: 30px;
}

.image-container img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.image-container img:hover {
  opacity: 0.8;
  transform: scale(0.99) translate(-2px, 3px);
}

.cta:link,
.cta:visited,
.btn-resume {
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
}

.btn {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid #5cd2b8;
  border-radius: 4px;
  background-color: transparent;
  color: #5cd2b8;
  font-family: inherit;
  padding: 15px 25px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 2rem;
  position: relative;
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(110%);
  opacity: 0.5;
}

.cta:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cta::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cta:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.cta:focus {
  outline: none;
}

.btn-animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

/* About me section styles */
#about-section {
  margin: 0 auto;
}

.numbered-heading {
  font-weight: 700;
  color: #ccd6f6;
  line-height: 1.1;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  position: relative;
  margin: 10px 0 30px;
  font-size: clamp(26px, 5vw, 3.2rem);
  white-space: nowrap;
}

.numbered-heading::before {
  position: relative;
  bottom: -2px;
  counter-increment: section 1;
  content: "0" counter(section) ".";
  margin-right: 10px;
  color: #5cd2b8;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 400;
}

.numbered-heading::after {
  content: "";
  display: block;
  position: relative;
  top: 2px;
  width: 300px;
  height: 1px;
  margin-left: 20px;
  background-color: rgb(35, 53, 84);
}
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: -8rem;
}

.content-left {
  margin-left: 14rem;
  width: 88rem;
}

.profile-container {
  width: 26rem;
  height: 26rem;
  background-color: #5cd2b8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
}

.profile-container img {
  vertical-align: middle;
  height: 98%;
  border-radius: 100%;
  transform: scale(1.01);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.profile-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  backface-visibility: hidden;
}

.profile-container:hover .profile-caption {
  opacity: 1;
  transform: translate(-50%, -30%);
}

.profile-container:hover img {
  transform: scale(1);
  filter: blur(3px) brightness(80%);
}

/* Skills section */
#skills-section {
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}

#skills-section > div {
  width: 100%;
  margin: 0 auto;
}

.skills-container {
  margin: 50px 80px 0;
  width: 100%;
}

.skills-subtitle {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #5cd2b8;
}

.skills-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  min-height: 1px;
  gap: 14rem;
}

.skills {
  min-height: 1px;
  align-self: baseline;
  margin-bottom: 5rem;
}

.skills-wrapper {
  width: 100%;
  padding: 0;
  display: flex;
}

.skills-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.skills-list-item {
  height: 40px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0.25rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(92, 210, 184, 0.4);
  margin-right: 0.5rem;
}

.passions-row {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
  margin-right: 0;
  padding: 0;
  justify-content: space-between;
}

.passions-text {
  font-size: 2rem;
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(92, 210, 184, 0.4);
  height: 25px;
}

.portfolio-wrapper .portfolio-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.portfolio-content {
  position: relative;
  width: 100%;
  min-height: 1px;
  margin-right: -100px;
  text-align: justify;
}

.section-title {
  position: relative;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  color: #5cd2b8;
}

.section-title__title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.325rem;
}

.section-title__description {
  font-size: 1.175rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.portfolio-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15rem;
}

.portfolio-img {
  width: 45%;
  transition: 0.5s;
  position: relative;
}

.card {
  width: 100%;
  border-radius: 1rem;
  border: 2px solid #5cd2b8;
  box-shadow: 2px 2px 50px rgb(0 0 0 / 15%);
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.portfolio-img .card:hover {
  z-index: 1;
  transform: scale(1.08);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-text-right {
  text-align: justify;
  width: 50%;
}

.portfolio-text-left {
  width: 50%;
}

.portfolio-h3 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5cd2b8;
}

.portfolio-p {
  /* margin-bottom: 1rem; */
  text-align: justify;
}

.portfolio-link {
  color: #9273ce;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

/*  Contact section */
.contact-wrapper {
  background-color: transparent;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  margin-left: 90px;
}

.contact-form {
  width: 100%;
}

.form-group:not(:last-child) {
  margin-bottom: 2rem;
}
.form-input {
  font-size: 1.5rem;
  padding: 1.3rem 2rem;
  border-radius: 2px;
  background-color: #08080e;
  border: none;
  font-family: inherit;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  color: inherit;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #5cd2b8;
}

.form-input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}

.form-input::-webkit-input-placeholder {
  color: var(--white);
}

.form-input:placeholder-shown + .form-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
}

textarea {
  width: 200px;
  height: 250px;
}

.submit-btn:hover {
  filter: brightness(80%);
  opacity: 0.7;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* For the cube box */
@keyframes spin {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/*  ---------------------- ================================= -----------*/
/* MEDIA QUERIES */
/*  ---------------------- ================================= -----------*/

/* 1800px */
@media (max-width: 112.5rem) {
  /* font size is 12px */
  html {
    font-size: 75%;
  }
}

/* 1200px */
@media (max-width: 1800px) {
  /* font size is 9px */
  html {
    font-size: 65%;
  }

  .hero {
    margin-top: 100px;
    align-items: center;
  }

  main {
    width: 80%;
  }

  .hero-left {
    width: 50%;
  }

  .hero-right {
    width: 40%;
  }

  .image-container {
    width: 100%;
  }

  /* About section */
  #about-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .content {
    display: flex;
    padding: 8rem 0;
  }

  .content-left {
    margin-left: 2rem;
  }

  .profile-container {
    width: 20rem;
    height: 20rem;
  }
  .profile-container img {
    width: 100%;
  }

  #portfolio-section {
    padding-top: 2rem;
  }

  .profile-wrapper {
    width: 100%;
  }

  .portfolio-row {
    flex-direction: row;
    padding: 0 2rem;
    margin-bottom: 10rem;
    justify-content: space-between;
    align-items: center;
  }

  .portfolio-text-right {
    margin-left: 60px;
  }

  .portfolio-text-left {
    margin-right: 60px;
  }

  section {
    padding-top: 10px;
  }

  /* contact section */
  #contact-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
}

/* 900px */
@media (max-width: 56.25em) {
  section {
    flex-direction: column;
    margin: 0 0px;
  }

  .left-icons {
    display: none;
  }

  body {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0 2rem;
  }

  main {
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }

  .layout {
    width: 100%;
  }

  .hero {
    flex-direction: column-reverse;
    margin: 100px 0 0 0;
    width: 100%;
  }

  .hero-right {
    width: 80%;
  }

  .hero-left {
    width: 80%;
  }

  .header {
    display: none;
  }

  .navigation {
    display: block;
  }

  .image-container {
    width: 80%;
  }

  #about-section {
    display: flex;
    flex-direction: column;
  }

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .content-left {
    width: 80%;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  span {
    margin: 0 10px;
  }

  .portfolio-wrapper {
    width: 100%;
    padding: 1rem 0;
    margin: 0 auto;
  }

  .portfolio-img {
    width: 80%;
  }

  .portfolio-text {
    width: 80%;
  }

  .portfolio-text-left {
    margin-right: 0;
  }
  .portfolio-text-right {
    margin-left: 0;
  }

  .portfolio-link {
    text-align: left !important;
    font-size: 1.2rem;
  }

  .portfolio-row {
    align-items: flex-start;
    margin-bottom: 10rem;
    justify-content: space-between;
    margin-left: 0;
  }

  .portfolio-h3 {
    text-align: left;
  }

  .needs-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group {
    width: 100%;
  }

  .numbered-heading::after {
    width: 80px;
    height: 2px;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group {
    width: 100%;
  }
}

/* For mobile devices: 0 - 600px */
@media (max-width: 37.5em) {
  section {
    flex-direction: column;
    padding-top: 0;
  }

  .btn {
    padding: 15px 50px;
  }

  .left-icons {
    display: none;
  }

  body {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0 2rem;
  }

  main {
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }

  .layout {
    width: 100%;
  }

  .hero {
    margin: 100px 0 0 0;
    flex-direction: column-reverse;
  }

  .hero-right {
    margin-bottom: 4rem;
  }

  .image-container {
    width: 100%;
    margin: 0 auto;
  }

  #about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .content-left {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0 3rem;
  }

  .numbered-heading {
    text-align: center;
    margin: 0 auto;
  }

  span {
    margin: 0 10px;
  }

  p,
  .description,
  .skills-list-item,
  .passions-text {
    font-size: 1.8rem;
  }

  .skills-list-item {
    margin-right: 1.5rem;
  }

  .skills-container {
    margin: 50px 10px 0;
    padding: 0 2rem;
  }

  .skills-subtitle {
    margin-bottom: 0.5rem;
  }

  .portfolio-wrapper {
    width: 90%;
    padding: 1rem 0;
  }

  .portfolio-text {
    width: 90%;
  }

  .portfolio-link {
    text-align: left;
    font-size: 1.3rem;
  }

  .portfolio-row {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10rem;
    margin-left: 0;
  }

  .portfolio-h3 {
    text-align: left;
  }

  .portfolio-text-left {
    margin-right: 0;
  }
  .portfolio-text-right {
    margin-left: 0;
  }

  .form-group {
    width: 100%;
  }

  .needs-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .numbered-heading::after {
    width: 0;
    height: 3px;
    display: none;
  }
}

@media (max-width: 500px) {
  body {
    padding: 0 1rem;
  }

  section {
    padding-top: 0;
  }

  #about-section {
    padding-bottom: 0;
  }

  #skills-section {
    padding-top: 0;
  }

  #contact-section .numbered-heading {
    margin-bottom: 20px;
  }

  .portfolio-wrapper {
    width: 95%;
  }

  #skills-section > div {
    width: unset;
  }

  .numbered-heading {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }

  .numbered-heading::before {
    content: "";
  }

  .numbered-heading::after {
    width: 60px;
    height: 3px;
  }
}

.project-links {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-top: 10px;
  margin-left: -10px;
  color: var(--white);
}

.project-links a {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px;
}

.project-links a svg {
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 0px) and (max-width: 1500px) {
  /* Your CSS styles for this screen size range go here */
  .portfolio-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10rem;
    margin-left: 0;
    width: 100%;

    .portfolio-img {
      width: 100%;
    }

    .portfolio-text {
      width: 100%;
    }
  }

  .skills-row {
    gap: 3rem;
  }

  .needs-reverse {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }

  section {
    padding: 0;
  }

  .contact-wrapper {
    margin-left: 0;
  }

  .hero-left {
    margin-bottom: 10rem;
  }

  .hero {
    flex-direction: column-reverse;

    & > div {
      width: 100%;
    }
  }

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 100%; */

    & div.content-left {
      width: unset;
    }
  }
}

@media screen and (min-width: 0px) and (max-width: 600px) {
  /* Your CSS styles for this screen size range go here */
  html {
    font-size: 52.5%;
  }

  p {
    text-align: left !important;
  }
}
