@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@200;300&family=Italiana&display=swap');

/* Normalizar estilos */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: 'Italiana', serif;
    margin: 0;
    font-size: 1em;
}

.row {
    display: flex;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

a {
    text-decoration: none;
    color: black;
}

.line-through {
    text-decoration: line-through;
    text-decoration-thickness: 0.03em;
}

.separator-right {
	position: relative;
	text-align: right;
	margin: 6em 2em;
}

.separator-right span {
	font-size: 1em;
    font-family: 'Hanken Grotesk', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}
  
.separator-right::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 220px;
    border-top: 2px solid black;
}
  
.separator-right::after {
	content: attr(data-content);
	display: inline-block;
	position: relative;
	padding: 0 10px;
	background-color: white;
	font-size: 16px;
	line-height: 1.2;
	color: black;
	top: -0.6em;
}

.separator-left {
	position: relative;
	text-align: left;
    margin: 6em 2em;
}

.separator-left span {
	font-size: 1em;
    font-family: 'Hanken Grotesk', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}
  
.separator-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 150px;
    right: 0;
    border-top: 2px solid black;
}
  
.separator-left::after {
	content: attr(data-content);
	display: inline-block;
	position: relative;
	padding: 0 10px;
	background-color: white;
	font-size: 16px;
	line-height: 1.2;
	color: black;
	top: -0.6em;
}

/* Media queries */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}


/* Header */
header {
    border-bottom: 1px solid black;
    padding: 2em;
}

header nav {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

header nav a {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Presentation */
.presentation {
    margin: 4em 3em;
}

.presentation h1 {
    font-size: 4em;
    font-weight: 400;
}

.presentation h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 2em 0 1em;
}

.presentation p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1em;
    font-weight: 200;
}

.presentation .img-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4em 0;
}

.presentation .img-profile #img-profile {
    height: 250px;
    border-radius: 48% 48% 0 0;
    border: 2px solid black;
    padding: 15px;
}

.presentation #img-stars {
    height: 25px;
}

/* List */
.list-container {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    margin-bottom: 2em;
}

.list-container .year {
    flex: 0 0 30%;
}

.list-container .list {
    flex: 0 0 70%;
}

.list-container .year h4 {
    font-size: 1em;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
}
  
.list-container .list ul li {
    list-style: none;
    font-weight: 400;
    font-size: 1em;
    font-family: 'Hanken Grotesk', sans-serif;
}

/* Subjects */
.subjects-finished, 
.subjects-in-progress {
    margin: 4em 3em;
}

.subjects-finished h3, 
.subjects-in-progress h3 {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 1em;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: inherit;
    text-decoration-thickness: from-font;
    text-decoration-color: black;
    text-underline-offset: 10px;
}

/* Percentage */
.percentage-career {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    margin: 4em 3em;
}

.percentage-career .number {
	font-size: 3em;
	align-self: flex-start;
}

.percentage-career img {
	height: 25px;
	vertical-align: middle;
}

.percentage-career .text {
	font-size: 1.5em;
}

/* Comitentes */
.comitente {
	display: flex;
    flex-direction: column;
    margin: 4em 3em;
}
.comitente h3 {
	font-size: 3.5em;
	font-weight: 400;
}
  
.comitente p {
	font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1em;
    margin: 4em 0;
}
  
.comitente img {
    border: 2px solid black;
	padding: 15px;
	border-radius: 47%;
}

/* Group */
.group {
	display: flex;
	flex-direction: column;
	align-items: center;
}
  
.group li {
	display: flex;
	width: 100%;
	align-items: baseline;
}

.group li a {
	font-size: 2.5em;
}

.group li:nth-child(even) {
	flex-direction: row-reverse;
}

.group li:nth-child(odd) {
	flex-direction: row;
	align-items: baseline;
}

.group li:nth-child(even) a {
	order: 2;
}

.group li:nth-child(odd) a {
	order: 1;
}

.group ul {
    padding: 0 1em;
}

.group ul li .number {
	font-size: 1em;
	font-family: 'Hanken Grotesk', sans-serif;
    padding: 10px;
}

.back-to-top {
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	padding: 1em 0;
	text-align: right;
    margin: 6em 2em;
}

.back-to-top span {
	font-family: 'Hanken Grotesk', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
}

.back-to-top span img {
	height: 30px;
	vertical-align: middle;
    margin-left: 10px;
}

/* Academic */
.academic-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
}

.academic-data div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.academic-data div ul  {
    margin-top: 4em;
    margin-bottom: 5em;
    padding: 0;
}

.academic-data div ul li {
    list-style: none;
    font-size: 1em;
    font-family: 'Hanken Grotesk', sans-serif;
}

.academic-data .fadu { 
    /* border-top: 2px solid black; */
    padding-top: 6em;
    /* border-bottom: 2px solid black; */
}

.academic-data .dgpc {
    margin-top: 7em;
}

.academic-data .uba img {
    height: 90px;
}

.academic-data .fadu img {
    height: 45px;
}

.academic-data .dgpc img {
    height: 70px;
}

/* Footer */
footer { 
    background-color: #212121;
}

footer p {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #F5F5F5;
    padding: 3em;
    font-size: 13px;
    margin: 0;
}