@charset "utf-8";
/* CSS Document */

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
	scroll-padding-top: 3.0rem;
	max-width: 100%;
}

:root{
	--bg-color: #ffffff;
	--sec-bg-col: whitesmoke;
	--bg-gray: #6c757d;
	--bg-gray-t: #d9dadb;
	--fade-main-color: #fd7e14cc;
	--fade-bg: #6c757d1a;
	--main-color: #fd7e14; /*rgb 253, 126, 20*/
	--fade-color: #ffffffcc;
	--txt-menu: #343a40;
	--txt-color: #212529;
	--txt-col-light: #f8f9fa;
	--txt-col: #ffc107;
	--txt-col2: #ff2e4a;
	--txt-col-fade: #6c757d;
	--big-font: 3.5rem;
	--std-font: 2.5rem;
	--h2-font: 1.5rem;
	--h3-font:1.3rem;
	--h5-font:0.8rem;
	--h6-font:0.8rem;
	--p-font: 1.0rem;
	--f-font: 1.2rem;
}


.container-ev{
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
/*	background: var(--main-color);*/
}

.timeline{
/*	width: 80%;*/
	height: auto;
	max-width: 800px;
	margin: 0 auto;
	margin-top: -50px;
	position: relative;
}
.timeline ul{
	list-style: none;
}
.timeline ul li{
	width: 80%;
	padding: 20px;
	background: var(--fade-bg);
	border-radius: 0 20px 20px 20px;
	margin-bottom: 20px;
}
.timeline ul li:last-child{
	margin-bottom: 0;
}

.timeline-content h2{
	font-size: var(--h2-font);
	font-weight: 500px;
	line-height: 30px;
}
.timeline-content h2:hover{
	color: var(--main-color);
}
.timeline-content p{
	font-size: var(--p-font);
	font-weight: 300;
	line-height: 30px;
	margin-bottom: 10px;
}

.timeline-content .date{
	font-size: var(--h5-font);
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 10px;
	letter-spacing: 1px;
}





@media only screen and (min-width: 768px){
	.timeline::before{
		content: '';
		position: absolute;
		height: 100%;
		width: 2px;
		left: 50%;
		transform: translateX(-50%);
		background: var(--bg-gray-t);
		z-index: -1;
		animation: moveline 7s linear forwards;
	}
	.timeline ul li{
		width: 60%;
		margin-bottom: 40px;
		position: relative;
		transition: all .4s ease;
	}
	.timeline ul li:nth-child(odd){
		float: left;
		clear: right;
		transform: translateX(-100px);
		border-radius: 20px 0 20px 20px;
		transition: all .4s ease;
	}
	.timeline ul li:nth-child(even){
		float: right;
		clear: left;
		transform: translateX(100px);
		border-radius: 0 20px 20px 20px;
		transition: all .4s ease;
	}
	.timeline ul li::after{
		content: '';
		position: absolute;
		height: 20px;
		width: 20px;
		background: var(--bg-gray-t);
		border-radius: 50%;
		top: 0;
		transition: all .4s ease;
	}
	.timeline ul li:nth-child(odd)::after{
		right: -20px;
		transform: translate(50%, -50%);
	}
	.timeline ul li:nth-child(even)::after{
		left: -20px;
		transform: translate(-50%, -50%);
	}
	.timeline ul li:hover:after{
		background: var(--main-color);
	}
	.timeline-content .date{
		position: absolute;
		top: -30px;
		transition: all .4s ease;
	}
}

@media (max-width: 560px){
	.timeline ul li{
		width: 100%;
		transition: all .4s ease;
	}
}

@keyframes moveline{
	0%{
		height: 0;
	}
	100%{
		height: 100%;
	}
}



.tl-dok{
	width: 100%;
	height: 270px;
	margin: 30px 0 30px;
}

.wrapper-ev{
	width: 100%;
	height: 100%;
	background: var(--fade-bg);
	padding: 0 0 10px 0;
	border-radius: 10px;
	box-shadow: 0 2px 20px rgb(19 8 70 / 8%);
	border: 1px solid #e9ecef;
	transition: all .4s ease;
}
.wrapper-ev img{
	align-items: center;
	padding: 50px;
}