.center {
	transform: scale(1.5);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-card-about {
	width: 400px;
	height: 420px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 300ms;
}

.article-card-about:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.article-card-about img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.article-card-about .content-about {
	box-sizing: border-box;
	width: 100%;
	position: absolute;
	padding: 30px 20px 20px 20px;
	height: auto;
	bottom: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.article-card-about .date-about,
.article-card-about .title-about {
	margin: 0;
}

.article-card-about .date-about {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 4px;
}

.article-card-about .title-about {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}

/*slider*/
/*width: 250px;*/
/*height: 300px;*/
/* Slider container */
.slidersteel-container {
    width: 100%;
    margin: 20px 0;
}
.slidersteel {
    display: flex;
    overflow: hidden;
    position: relative;
}
.slidersteel img {
    width: 100%;
    height: auto;
}
.slidersteel .slidesteel {
    min-width: 100%;
    transition: transform 0.5s ease;
}
/* Add some styles for arrows or dots if needed */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}