.wrapperaboutus {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: #333;
	padding-top: 30px;
  }

.wrapperaboutus > h1 {
	animation: fadeIn 1s ease-out;
	font-size: xx-large;
	text-align: center;
	color: wheat;
}

.carouselaboutus {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: auto;
	padding-left: 0px;
	height: 100%;
	gap:50px;
}
  
.aucard {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	justify-content: center;
	border-style: double;
	border-color: wheat;
	border-radius: 20px;
	gap: 50px;
  }

.aucard > .img img{
	width: 70%;
	border-radius: 50%;
	object-fit: cover;
	border: 6px double wheat;
	transition: transform 0.3s;
}

.aucard > .img :hover{
	width: 80%;
	transform: rotate(360deg);
}

.name {
	color: wheat;
	font-size: x-large;
}

.icon-container {
	display: flex;
	justify-content: center;
	gap: 20px;
  }

.icon {
	background-color: transparent;
	border-style: none;
	color: wheat;
}

.icon i{
	font-size:50px;
	border-radius: 50%;
}

.icon i:hover {
	color: black;
	transition: color 0.2s ease;
}

@keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(-20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
}

