section	{
	padding: 60px 0;
}
ul {
	list-style-type: none;
}
.title {
	margin-bottom: 30px;
}
.list ul li:not(:last-child) {
	margin-bottom: 5px;
}
.list-title {
	margin-bottom: 10px;
}
.buttons-container {
	margin: 30px auto;
	max-width: 340px;
}
.buttons-container a {
	width: 100%;
}
.buttons-container a:not(:last-child) {
	margin-bottom: 15px;
}

.intro-image-block {
	display: flex;
}
.intro-image-block .row {
	justify-content: center;
	align-items: center;
}
.intro .article-img {
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro .article-img img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0.375rem;
}

@media screen and (max-width: 991px) {
	.intro {
		padding-top: 0;
	}
	.intro .article-img {
		padding-left: 0;
		padding-right: 0;
		order: 1;
		margin-bottom: 30px;
		width: 100%;
		max-width: 100%;
		position: absolute;
		z-index: 1;
		top: 0;
		height: 100%;
	}
	.intro .article-img img {
		border-radius: 0;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.intro .intro-title {
		margin: 40px 0;
		order: 2;
		position: relative;
		z-index: 3;
		color: var(--theme-white);
	}
	.intro .intro-title p {
		color: #dadada
	}
	.intro-image-block > .row {
		position: relative;
	    min-height: calc((100 * var(--vh)) - 60px);
	}
	.intro-image-block > .row:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.65);
		z-index: 2;
	}
}


.article .row {
	justify-content: center;
	align-items: center;
}
.article-slider img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center;
	border-radius: 0.375rem;
}
@media screen and (max-width: 991px) {
	.article  {
		padding-top: 0;
	}
	.article-slider img {
		height: 350px;
	}
}


.progress-bar {
	margin: 0 auto 45px;
	padding: 3px;
	border: 2px solid var(--theme-gray-light);
	height: 50px;
	border-radius: 1000px;
	max-width: 620px;
} 
.progress-bar .progress-bar-inner {
	display: inline-flex;
	height: 100%;
	position: relative;
	border-radius: 1000px;
	overflow: hidden;
}
.progress-bar .progress-fill {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: var(--theme-white);
	background: var(--Mint);
	width: 0%;
	height: 100%;
	position: relative;
	padding: 0 1rem;
}
.progress-bar .progress-text {
	position: absolute;
	font-weight: bold;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
