* {
	margin: 0;
	padding: 0;
  font-family:Arial, Helvetica, sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 100%;
}

section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#043436, #5FC3E4);
	clip-path: circle(30% at right 70%);
}

section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(cyan, #07575B);
	clip-path: circle(30% at 5% 70%);
}
/* .wadah{
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.23);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.6px);
  -webkit-backdrop-filter: blur(8.6px);
  border: 1px solid rgba(255, 255, 255, 0.03);
} */

.judul{
  position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
  background-color: transparent;
  border-radius: 16px;
  text-align: center;
}
#logo{
  margin-top: 10px;
  position: relative;
  justify-content: center;
	align-items: center;
  width: 320px;
}
.judul p{
  margin-top: 10px;
  font-size: 23px;
  width: 75%;
}

.container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 40px 0;
}

.container .card {
	position: relative;
	width: 300px;
	height: 350px;
	background: rgba(255, 255, 255, 1);
	margin: 20px;
	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);
  cursor: pointer;
}

.container .card .content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s;
}

.container .card:hover .content {
	transform: translateY(-20px);
}

.container .card .content .imgBx {
	position: relative;
	width: 175px;
	height: 175px;
	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 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
	color: black;
}

.container .card .content .contentBx h4 {
	letter-spacing: 2px;
	font-weight: 300;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.5em;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	color: black;
}

.container .card:hover .contentBx h4 {
	transform: translateY(0px);
	opacity: 1;
}

/*Tampilan hp*/
@media screen and (max-width:760px){
	.wadah{
		backdrop-filter: blur(8.6px);
  -webkit-backdrop-filter: blur(8.6px);
	}
	.container .card .content .contentBx h4{
		opacity: 1;
		margin-top: -40px;
  }
}