* {
  font-family: 'Quicksand', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #fff;
}

body {
  background-color: #0b0b0b;
}

/* Header */
.container img{
  width: 70px;
}
li{
  list-style: none;
}
li a{
  text-decoration: none;
  font-size: 1rem;
}
a:hover{
  color: #bd1f36;
  transition: all 0.3s ease 0s;
}
a:active{
  color: #ff587d;
}
header{
  position: relative;
  padding: 0 2rem;
}
.navbar{
  width: 100%;
  height: 60px;
  max-height: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .links{
  display: flex;
  gap: 2rem;
}
.navbar .btn_sesion{
  background-color: #bd1f36;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  text-decoration: none;
}
.navbar .btn_sesion:hover{
  color: #ff587d;
  background: transparent;
  border: 2px solid #bd1f36;
  transition: all 0.4s ease 0s;
  border-radius: 0px;
}
.navbar .btn_sesion:active{
  scale: 0.80;
}

/* timeline */
.timeline{
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
}
.container-1{
  padding: 10px 50px;
  position: relative;
  width: 50%;
}
.txt-box{
  padding: 20px 3px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  font-size: 15px;
}
.txt-box h2, p{
  color: #0b0b0b;
}
.l-container{
  left: 0;
}
.r-container{
  left: 50%;
}
.container-1 img{
  position: absolute;
  width: 40px;
  border-radius: 50%;
  right: -20px;
  top: 32px;
  z-index: 10;
}
.r-container img{
  left: -20px;
}

.timeline::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  background: #fff;
  top: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -1;
}

.txt-box h2{
  font-weight: 600;
  margin: 10px;
}
.txt-box p{
  display: inline-block;
  margin: 10px;
  margin-bottom: 10px;
}

.l-container-flecha{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  right: -15px;
}
.r-container-flecha{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #fff;
  left: -15px;
}