* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Poppins;
}
@font-face {
	font-family: Poppins;
	src: url(./fonts/Poppins-Medium.ttf);
}
.main {
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	/* background-color: rgb(245, 245, 245); */
	background: url(../img/all/inner.jpg) center center / cover no-repeat fixed;
	padding: 50px 0;
}
.main .head {
	font-size: 29px;
	color: white;
	position: relative;
	margin-bottom: 100px;
	font-weight: 1000;
    
}
.main .head::after {
	content: " ";
	position: absolute;
	width: 50%;
	height: 3px;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	background-image: linear-gradient(to right, #FAB009, #FAB009);
}

/* Container Css Start  */

.con {
	width: 55%;
	height: auto;
	margin: auto 0;
	position: relative;
}
.con ul {
	list-style: none;
}
.con ul::after {
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-image: linear-gradient(to bottom, #79BD35, #EE7E1A);
}
.con ul li {
	width: 50%;
	height: auto;
	padding: 15px 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.218);
	position: relative;
	margin-bottom: 30px;
	z-index: 99;
}
.con ul li:nth-child(4) {
	margin-bottom: 0;
}
.con ul li .circle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #79BD35;
	top: 0;
	display: grid;
	place-items: center;
}
.circle::after{
	content: ' ';
	width: 12px;
	height: 12px;
	background-color: #79BD35;
	border-radius: 50%;
}
ul li:nth-child(odd) .circle {
	transform: translate(50%, -50%);
	right: -30px;
}
ul li:nth-child(even) .circle {
	transform: translate(-50%, -50%);
	left: -30px;
}
ul li .date {
	position: absolute;
	width: 200px;
	height: 33px;
	background-image: linear-gradient(to right,#79BD35,#79BD35);
	border-radius: 15px;
	top: -45px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 13px;
	box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.318);
}
.con ul li:nth-child(odd) {
	float: left;
	clear: right;
	/* text-align: right; */
	transform: translateX(-30px);
}
ul li:nth-child(odd) .date {
	right: 20px;
}
.con ul li:nth-child(even) {
	float: right;
	clear: left;
	transform: translateX(30px);
}
ul li .heading {
	font-size: 17px;
	color: #EE7E1A;
	font-weight: 1000;
}
ul li p {
	font-size: 13px;
	color: #666;
	line-height: 18px;
	margin: 6px 0 4px 0;
}
.read-more-btn {
	font-size: 13px;
	text-decoration: none;
	color: black;
	transition: all 0.3s ease;
}


@media only screen and (min-width:798px) and (max-width: 1100px) {
	.con{
		width: 80%;
	}
}

@media only screen and (max-width: 798px) {
	.con{
		width: 70%;
		transform: translateX(20px);
	}
	.con ul::after{
		left: -40px;
	}
	.con ul li {
		width: 100%;
		float: none;
		clear: none;
		margin-bottom: 80px;
	}
	.con ul li .circle{
		left: -40px;
		transform: translate(-50%, -50%);
	}
	.con ul li .date{
		left: 20px;
	}
	.con ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.con ul li:nth-child(even) {
		transform: translateX(0px);
	}
}

@media only screen and (max-width: 550px) {
	.con{
		width: 80%;
	}
	.con ul::after{
		left: -20px;
	}
	.con ul li .circle{
		left: -20px;
	}
}
.more-text {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	display: block;
}

.more-text.open {
	max-height: 500px; /* Ajustable selon le contenu */
	padding-top: 5px;
}

