.menu-item-681
{
	display:none !important;
}

.timeline {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 30px;
	position: relative;
	width: 100%;
	margin: auto;
	align-items: baseline;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(to bottom, white, #000 50%, white);
	transform: translateX(-50%);
	margin-top: -30px;
  margin-bottom: -30px;
}

.timeline-item {
	display: contents; 
}
.timeline-left {
	text-align: right;
}

.timeline-right {
	text-align: left;
}

.date {
    display: inline-block;
    background: #733A19;
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    margin-bottom: 6px;
    max-width: fit-content;
    text-align: center;
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.title {
	color: #121212;
	font-family: "DM Sans", Sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.9px;
}

.desc {
    background: #E6F3F8;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    color: #121212;
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    row-gap: 20px;
	text-align: left;
}


.dot {
	width: 20px;
	height: 20px;
	background: #39A0C2;
	border-radius: 50%;
	z-index: 2;
	position: relative;
}
.dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;   
  height: 32px;
  background: #39A0C2;
	opacity: 0.1;
  border-radius: 50%;
  transform: translate(-50%, -50%); 
  z-index: -1; 
}

@media (max-width: 1024px) {
	.menu-item-681
	{
		display:block !important;
	}
	.timeline {
		grid-template-columns:1fr;
		gap: 0px;
	}
	.timeline-left, .timeline-right {
		padding-left: 40px;
	}

	.timeline::before {
		left: 10px;
	}
	.title {
		padding-top: 10px;
	}
	.desc {
		margin-bottom: 50px;	
	}
	.dot {
		left: 0px;
		top: -93px;
	}
	.timeline-left, .timeline-right {
		text-align: left;
	}
	.title {
    font-size: 28px;
}
}
	@media (max-width: 767px) {
		.title {
    font-size: 25px;
}
}