.about-me-page > div:nth-of-type(even) {
  background-color: var(--secondary-color);
}

/* #region - About me - Hero section */

.about-me-hero { 
  padding-top: var(--space-4xl); 
  padding-bottom: var(--space-3xl);
  color: var(--text-color);
}

.about-me-hero .content-container,
.personal-text .content-container {
  display: flex;
  flex-direction: row;
  gap: var(--space-3xl);
  align-items: center;
}

#about-me-hero-img {
  max-width: 350px;
}

.about-me-intro {
  display: flex;
  flex-direction: column;
}

.about-me-intro h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.about-me-intro p {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* #endregion - Hero section */

/* #region - About me - Skills section */

.skills-section {
  padding: var(--space-2mxl) 0rem;
  position: relative;
  overflow: hidden;
}

.svg-wrapper {
  position: absoulte;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: var(--skill-svg-color);
  opacity: 0.3;
}

.skills-section .content-container {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.skills-section .section-header,
.personal-section .section-header,
.experience-section .section-header,
.education-section .section-header {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  color: var(--text-color);
}

.section-header::after,
.experience-section .section-header::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--text-color);
}

.section-header.no-after::after {
  content: none;
}

/* #region - Skill container */

.skill-container-wapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.skill-container {
  font-family: 'Figtree', sans-serif;
  display: flex;
  box-sizing: border-box;
  flex: 1 1 300px;
  flex-direction: column;
  padding: var(--space-l);
  border-radius: var(--border-radius-l);
  background-color: var(--skill-container-background);
  max-width: 350px;
  backdrop-filter: blur(2px);
}

.skill-container h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  align-self: stretch;
  text-align: center;
}

.skill-container li {
  padding-top: var(--space-s);
}

.skill-container h2::after {
  content: "";
  display: block;
  width: 75%;
  height: 1px;
  margin: 0.3em auto;
  background: var(--skill-conatiner-after);
}

.skill-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* #endregion - Skill container*/

/* #endregion - Skill section*/

/* #region - About me section */

.personal-section {
  padding: var(--space-2mxl) 0rem;
  color: var(--text-color);
  line-height: 1.8;
}

.personal-section .content-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.personal-content {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
} 

#about-me-working {
  max-width: 315px;
  border-radius: var(--border-radius-xl);
}

.personal-text p:nth-child(2){
  margin: 0.75em 0em;
}

/* #endregion - About me section */

/* #region - Experience & Education section */

.experience-section,
.education-section {
  padding: var(--space-xl) 0rem var(--space-2mxl) 0rem;
}

.experience-section .content-container,
.education-section .content-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.experience,
.education {
  display: flex;
  align-items: flex-start;
  gap: var(--space-l);
  background-color: var(--experience-background);
  color: var(--text-color);
  padding: var(--space-l);
  border-radius: var(--border-radius-s);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.15);
}

.education {
  background-color: var(--education-background);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
}

.experience-container,
.education-container {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  margin: auto;
  align-items: stretch;
  gap: var(--space-xl);
}

.company-logo-container,
.university-logo-container {
  height: 40px;
  aspect-ratio: 1 / 1;
  background-color: var(--company-logo-background);
  border-radius: var(--border-radius-xxs);
  border: 1px solid var(--grayscale-20);
}

.dark .company-logo-container,
.dark .university-logo-container {
  border: none;
}

.company-dark,
.university-dark {
  display: none;
}

.dark .company-dark,
.dark .university-dark {
  display: block;
}

.dark .company-light,
.dark .university-light {
  display: none;
}

.experience-content,
.education-content {
  display: flex;
  flex-direction: column;
  gap:var(--space-s);
}

.experience-text,
.education-text {
  line-height: 1.8;
}

.experience-header,
.education-header {
  display: flex;
  gap: 0.75em;
}

.position,
.university {
  font-weight: bold;
}

/* #endregion - Experience & Education section */

@media (max-width: 767px) {
  .about-me-hero .content-container,
  .personal-content {
    flex-direction: column;
    gap: var(--space-2xl);
    text-align: center;
  }

  .about-me-hero img {
    order: 3;
  }
}

@media (max-width: 550px) {
  .experience,
  .education {
    flex-direction: column;
    align-items: center;
  }

  .experience-header,
  .education-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.5em;
  }
}