*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

body{
	background-color: #edfeff;
}

div.area{
	height: 380vh;
	background-color: #edfeff;
}

div.area h1{
	text-align: center;
	font-size: 40px;
	font-weight: 800;
	margin-top: 80px;
}
div.allback{
	justify-content: center;
	margin-top: 50px;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


div.card:hover{
	background-color: green;
}

.cards{
	display: inline-flex;
    position: absolute;
    left: 50%;
    width: 100%;
    justify-content: center;
    transform: translate(-50%);
    flex-wrap: wrap;
}

.card{
	align-items: center;
/*	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.card{
	margin: 30px;
    height: 420px;
	width: 240px;
	background-color: #c0ebed;
	text-align: center;
	border: 1px solid #000;
	transition: all 0.6s ease;
	border-radius: 20px;
	cursor: pointer;
}

.card img{
	height: 240px;
	width: 100%;
	border-radius: 20px;
	cursor: none;
	border: 1px solid #000;
	border-radius: 0.1px solid #000;
}

.card p{
	font-weight: 600;
}

.card a{
	text-decoration: none;
	color: #fff;
	padding: 4px;
	width: 100%;
	width: 100%;	
	background-color: #00de4a;
	border-radius: 10px;
	border: none;
	cursor: not-allowed;
}

.card a:hover{
	background-color: black;
	color: #fff;
	border-radius: 30px;
}


@media(max-width: 809px){
	.cards{
		display: inline-block;
	}

	.allback{
		margin-top: 150px;
	}

	div.area h1{
		margin-top: 250px;
	}

	div.logo img{
		justify-content: center;
		align-items: center;
		float: right;
	}

	button.bottom{
		display: none;
	}
}


*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

ul.menu-ul{
	list-style-type: none;
	float: right;
	display: inline-flex;
	margin: 10px;
}

ul.menu-ul li{
	padding: 10px;
}

ul.menu-ul li a{
	text-decoration: none;
	color: #000;
	padding: 10px;
	transition: 0.6s ease;
}


ul.menu-ul li a.active{
	background-color: #fff;
	color: red;
	font-weight: 600;
}

ul.menu-ul li a:hover{
	background-color: #000;
	color: #fff;
}
img.link{
	width: 50px;
	position: absolute;
	top: 50px;
	right: 50px;
	display: none;
}

button.bottom{
	float: right;
	height: 30px;
	width: 90px;
	border-radius: 20%;
	border: none;
	background-color: green;
	cursor: pointer;
}

button.bottom:hover{
	background-color: darkgreen;
}

.menu.mobile-menu{
	margin-left: 0;
}

div.logo img.logo-img{
	height: 170px;
	width: auto;
	float: left;
	position: absolute;
	top: 20px;
	left: 20px;
	border-radius: 50%;
}

@media (max-width: 900px){
	ul.menu-ul{
		display: none;
	}

	img.link{
		display: block;
		font-weight: 600;
	}

	div.menu{
		top: 0;
		left: 0;
		position: absolute;
		background-color: rgba(255, 255, 255, 0.20);
		backdrop-filter: blur(8px);
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: -100%;
		transition:  0.5s ease;

	}

	ul.menu-ul{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	ul.menu-ul li{
		margin: 25px 0;
		font-size: 1.2em;
		font-weight: 600;
	}

}
