/***********************/
/* introduction */
/***********************/
.intro {
  padding: 3.2rem 4.8rem 2.4rem 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.degree {
  font-size: 2.4rem;
  color: var(--color-p-100);
}

.motivation {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-p-100);
}


/***********************/
/* introduction */
/***********************/
.social-box {
  padding: 1.6rem 4.8rem;
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.social-box ul {
  font-size: 1.6rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-box ul li {
  letter-spacing: -0.75px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.social-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.social-link:link,
.social-link:visited {
  color: var(--color-grey-600);
  text-decoration: none;
  cursor: pointer;
}

.social-link:hover,
.social-link:active {
  color: var(--color-grey-400);
  text-decoration: underline;
}


/***********************/
/* main */
/***********************/
.content {
  padding: 2.4rem 4.8rem 6.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
}

.col-1,
.col-2 {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/***********************/
/* Education */
/***********************/
.education {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.institution {
  font-size: 1.8rem;
}

.date-result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/***********************/
/* Experience */
/***********************/
.experience {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.company-date-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company {
  font-size: 1.6rem;
}

.job-description {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--color-grey-400);
}


/***********************/
/* Competition */
/***********************/
.competition {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}


/***********************/
/* Relevant courses */
/***********************/
.courses-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  column-gap: 1.6rem;
}

.course-item {
  font-size: 1.6rem;
}


/***********************/
/* Projects */
/***********************/
.project {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}


/***********************/
/* Skills */
/***********************/
.skills-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill {
  font-size: 1.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}


/***********************/
/* Download button */
/***********************/
.btn-section {
  width: 110rem;
  margin: 0 auto 4.8rem;
  display: flex;
  justify-content: center;
}

.btn-download:link,
.btn-download:visited {
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  border: none;
  border-radius: 1.2rem;
  padding: 1.2rem 2.4rem;
  color: var(--color-grey-700);
  background-color: var(--color-btn-primary);
  transition: all 0.4s;
}

.btn-download:hover,
.btn-download:active {
  color: var(--color-grey-700);
  background-color: var(--color-btn-secondary);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-download:focus,
a:focus {
  outline: none;
  box-shadow: 0 0 0 0.5rem rgba(124, 124, 124, 0.5);
}

/*
-Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-Spacing system (px):
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/