.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.contact-link {
  text-decoration: none;
  color: black;
}

.contact-link:hover {
  background-color: var(--bs-gray-300);
}

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

.project:hover {
  box-shadow: 0 0 20px #3498db;
}

.project {
  box-shadow: none;
  transition: box-shadow 1s;
}

.fit-cover {
  object-fit: cover;
}

.timeline {
  list-style: none;
  position: relative;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #26c6da;
  top: 0;
  bottom: 0;
  left: 0px;
  margin-left: -3px;
  transform: translate(50%, 0);
}

.timeline-event {
  position: relative;
  background-color: inherit;
  height: auto;
  margin-bottom: 50px;
  padding: 0 5%;
}

.timeline-img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width:600px) {
  .timeline-event {
    width: 50%;
  }
}

@media (min-width:600px) {
  .container ul li:nth-child(odd) .circle {
    right: 0;
    transform: translate(50%, 100%);
  }
}

@media (min-width:600px) {
  .container ul li:nth-child(even) .circle {
    left: 0;
    transform: translate(-50%, 100%);
  }
}

@media (min-width:600px) {
  .container ul li:nth-child(odd) {
    left: 0;
  }
}

@media (min-width:600px) {
  .container ul li:nth-child(even) {
    left: 50%;
  }
}

@media (min-width:600px) {
  .timeline::after {
    left: 50%;
  }
}

@media (max-width:600px) {
  .circle {
    left: 0;
    transform: translate(-50%, 50%);
  }
}

.circle {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #26c6da;
  top: 0;
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  border: var(--bs-success);
  padding: 1em;
  width: 100%;
  border-radius: 10px;
  box-shadow: 4px 4px 25px rgba(51, 51, 51, 0.2);
}

.about-content {
  margin: 0 20%;
}

.badge-grid .col {
  align-self: center;
  display: flex;
  padding: 10px 10px 10px 0px;
}

html {
  position: relative;
  min-height: 100%;
}

footer {
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  margin: 0 0 100px;
}

