@charset "utf-8";
/* CSS Document */
.haykal-s{
	width: 100%;
	height: 90vh;
	position: relative;
}
.boss{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 50px;
	border: 2px solid #1c6780;
	border-radius: 10px;
}
.boss p{
	color: #1c6780;
	text-align: center;
	font-size: 14px;
	margin-top: 25px;
	transform: translateY(-50%);
}
.childer{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: nowrap;
	width: 100%;
	height: auto;
	margin-top: 20px;
}
.child{
	width: auto;
	height: 40px;
	border-radius: 10px;
	border: 2px solid #1c6780;
	text-align: center;
	position: relative;
}
.child p{
	width: auto;
	height: 100%;
	color: #1c6780;
	font-size: 12px;
	padding: 10px 5px;
}
.child ul{
	list-style: none;
	width: auto;
	height: auto;
	margin: 0;
}
.child ul li{
	width: auto;
	height: 40px;
	border-radius: 10px;
	border: 2px solid #1c6780;
	font-size: 12px;
	text-align: center;
	position: relative;
	line-height: 40px;
	color: #1c6780;
	margin-top: 10px;
}
.boss:hover , .child:hover , .child ul li:hover{
	background: #bea139;
}

@media(max-width:1100px){
	.child p,.child ul li{
		padding: 5px 2.5px;
		font-size: 10px;
	}
}
@media(max-width:900px){
	.child p,.child ul li{
		padding: 5px 2.5px;
		font-size: 6px;
	}
}



