@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root{
    --mc:#FFF;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    z-index: -1;  
  }

.place-h::placeholder {
  color: #6c757d;
  opacity: 1;
}
body{
    background: radial-gradient(at center center , #57525200, #00000096), url('../img/bg-img.png') no-repeat center center / 100% 100% fixed;
    /*border-image: radial-gradient(at center center, #000, #0000);*/
}

.bg-blur{
    background:transparent;
    padding: 1.5rem 1.2rem;
    backdrop-filter: blur(5px);
}

.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0dcaf0;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 20px;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-item::before {
    content: '';
      position: absolute;
      top: 20px;
      width: 1rem;
      height: 1rem;
      background-color: #0dcaf0;
      border-radius: 50%;
      transform: translateX(10%);
}
.timeline-item:nth-child(odd)::before {
    right: -6px;
}
.timeline-item:nth-child(even)::before {
    left: -10px;
}

.icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 0.3rem solid;
  border-radius: 9999px;
  padding: 0.3rem;
  margin: 0 auto 1rem;
}
.icon>i{
    width:100%;
    aspect-ratio:1;
}