* {
	margin: 0;
	padding: 0;
}
body{
    background: white;
}
.maincards {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 100vh;
}



.container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

}

.container .card {
	position: relative;
	width: 300px;
	height: 400px;
	background: black;
	margin: 20px;
    margin-left: 3%;
    margin-right: 3%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(10px);
}

.container .card .content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.6s;
}

.container .card:hover .content {
	transform: translateY(-90px);
}

.container .card .content .imgBx {
	position: relative;
	width: 200px;
	height: 150px;
    border-radius: 10%;
	overflow: hidden;
}

.container .card .content .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container .card .content .contentBx h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
}

.container .card .content .contentBx h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}

.container .card .sci {
	position: absolute;
	bottom: 30px;
	display: flex;
    flex-direction: column;
    text-align: center;
}

.container .card .sci li {
	list-style: none;
	margin: 0 10px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
}

.container .card:hover .sci li {
	transform: translateY(-10px);
	opacity: 1;
}

.container .card .sci li a {
	color: #fff;
	font-size: 20px;
}
.boxtext{
    color: white;
}
.morebutton{
	transition:  0.8s;
	transition-timing-function: ease-out;
    background-color: #d3d3d3;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
	width: 110px;
	height: 40px;
    text-align: center;
}
.morebutton:hover {
    background-color: #bf0811;
	width: 120px;
	color: white;
	height: 50px;
	margin-top: -10px;
  }
  .spacer{
    padding-top: 20px;
  }