@font-face{
	font-family:"Brush Script W03 Medium";
	src:url("../fonts/bbc375a3-b1ab-4096-8a3c-8a747bb7267f.woff2") format("woff2"),url("../fonts/3f981ec5-7390-4399-a865-221bdfeb5861.woff") format("woff");
}	

.bachllogo {
    line-height: 100%;
    color: red;
    font-family: 'Brush Script W03 Medium';
    text-transform: none;
    font-weight: normal;
    font-size: 85px;   
    text-shadow:
    2px  2px 2px white,
    2px -2px 2px white,
   -2px  2px 2px white,
   -2px -2px 2px white;
   
}

hr{
margin: 0.5rem auto;
}

#low-margin-top {
  margin-top: 3rem !important;
}



.social-bar {
    margin-bottom: 2rem;


}
.social-bar a {
    margin-right: 0.5rem;
}

/* Footer Social Buttons */
body > div.uk-container.uk-container-center > footer > div > ul > li:nth-child(1) > div > a:hover {
    text-decoration: none!important;
    border-bottom: none!important;
    /* color: blueviolet!important; */
}

/* Timeline Container */
.timeline {
    /* background: #212121; */
    margin: 20px auto;
    padding: 20px;
  }
  
  /* timeline-card container */
  .timeline-card {
    position: relative;
    /* max-width: 25rem; */
  }
  
  /* setting padding based on even or odd */
  .timeline-card:nth-child(odd) {
    padding: 30px 0 30px 30px;
  }
  .timeline-card:nth-child(even) {
    padding: 30px 30px 30px 0;
  }
  /* Global ::before */
  .timeline-card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid red;
  }
  
  /* Setting the border of top, bottom, left */
  .timeline-card:nth-child(odd)::before {
    left: 0px;
    top: -4.5px;
    bottom: -4.5px;
    border-width: 5px 0 5px 5px;
    border-radius: 50px 0 0 50px;
  }
  
  /* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
  @media only screen and (max-width: 400px) {
    .timeline-card:nth-child(odd)::before {
      top: -5px;
      bottom: -5px;
    }
  }
  
  /* Setting the border of top, bottom, right */
  .timeline-card:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 5px 5px 5px 0;
    border-radius: 0 50px 50px 0;
  }
  
  /* Removing the border if it is the first timeline-card */
  .timeline-card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
  }
  
  /* Removing the border if it is the last timeline-card  and it's odd */
  .timeline-card:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Removing the border if it is the last timeline-card  and it's even */
  .timeline-card:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Information about the timeline */
  .timeline-info {
    display: flex;
    flex-direction: column;
    background: #333;
    color: whitesmoke;
    border-radius: 10px;
    padding: 10px;
  }
  
  /* Title of the timeline-card */
  .timeline-title {
    color: whitesmoke;
    position: relative;
  }
  
  /* Timeline dot  */
  .timeline-title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 999px;
    border: 3px solid red;
  }
  
/* text right if the card is even  */
.timeline-card:nth-child(even) > .timeline-info > .timeline-title {
  text-align: right;
}

/* setting dot to the left if the card is odd */
.timeline-card:nth-child(odd) > .timeline-info > .timeline-title::before {
  left: -45px;
}

/* setting dot to the right if the card is odd */
.timeline-card:nth-child(even) > .timeline-info > .timeline-title::before {
  right: -45px;
}
