html {
    scroll-behavior: smooth;
}

body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal;
}

h1, h3, h5 {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

h2, h4, h6 {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 900;
}

.logo-fundacion{
    font-family: 'Lora', serif;
    font-weight: 300;    
}

.fondo-azul{
    background-color: #12223e;
    color:white;
}

.fondo-negro{
    background-color: black;
    color:white;
}

.borde{
    border-bottom: 5px solid #9f3d3d;
}
.fakeimg {
    height: 200px;
    background: #aaa;
  }

  .seccion-vacia {
    height: 15vh;
    background: #f0f0f0;
  }

  .footer{
      width: 100%;
      padding: 1em;
      margin-top: 1em;
      font-size: small; 
  }

  #copy{
      font-size: small;
  }

  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #9f3d3d;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 45px;
  }
  
  #myBtn:hover {
    background-color: #fff;
    color: #9f3d3d;
    border: 1px solid #9f3d3d;
}

.parallax {
    background-image: url("../imagenes/fondo-1.jpeg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-link:hover{
    background-color: #9f3d3d !important;
    color: #fff !important;
}

/* time line */

* {
  box-sizing: border-box;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.container-t {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container-t::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #9f3d3d;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -16px;
}

.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}


@media screen and (max-width: 600px) {
  .timeline::after {
  left: 31px;
  }
  
  .container-t {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
    .container-t::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  .left::after, .right::after {
  left: 15px;
  }
  
  .right {
  left: 0%;
  }
}