/* --------------------------------------------------
 *   button bar  -->  top page buttons
 * -------------------------------------------------- */
#bt-bar {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
#bt-bar a:hover {
	color: #0044aa;
}
.quick-bt {
	display: inline-block;
	text-align: center;
	width: 150px;
	padding: 5px;
	background-color: #dddddd;
	border-width: 1px;
	border-style: solid;
	border-color: #eeeeee #bbbbbb #bbbbbb #eeeeee;
	border-radius: 4px;
}
.quick-bt:hover{
	background-color: #cccccc;
	border-color: #eeeeee #b0b0b0 #b0b0b0 #eeeeee;
}
.quick-bt:active {
	background-color: #c0c0c0;
	border-color: #b0b0b0 #eeeeee #eeeeee #b0b0b0;
}


/* --------------------------------------------------
 *   splash logo
 * -------------------------------------------------- */
#splash {
	text-align: center;
}
#splash img {
	max-width: 400px;
	width: 100%;
}
#competition-name {
	font-size: 22px;
	font-weight: bold;
}

/* --------------------------------------------------
 *   container
 * -------------------------------------------------- */
#container-about {
	margin: 20px 10px 30px 10px;
	padding: 10px 20px;
	background-color: #f0f0f0;
	background-image: url("../../../webengine/siteWebRes/img/bg-plank-01.jpg");
	border-width: 1px;
	border-style: solid;
	border-color: #a4b5c2 #c7ccd0 #c7ccd0 #a4b5c2;
	border-radius: 12px;
}

/* --------------------------------------------------
 *   page
 * -------------------------------------------------- */
/*article h3 {
	text-align: center;
}*/
figure {
	margin: auto;
}

/* ==================================================
 *   more info  -->  citeste mai multe
 * ================================================== */
.info-wrapper {
	display: flex;
	justify-content: space-evenly;
	gap: 10px;
	flex-wrap: wrap;
}
.info-circle-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	text-align: center;
	background-color: #e9e9e9;
	border-style: solid;
	border-width: 1px;
	border-color: #e3e3e3 #d6d6d6 #e3e3e3 #e9e9e9;
	border-radius: 78px;
	overflow: hidden;
}
.info-circle-1:hover,
.info-circle-1:active {
	background-color: #d9d9d9;
	border-color: #dfdfdf #cccccc #dfdfdf #e9e9e9;
}
.info-circle-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	width: 110px;
	height: 110px;
	background-color: #fbfbfb;
	border-radius: 55px;
	border-style: solid;
	border-width: 1px;
	border-color: #e3e3e3 #e9e9e9 #e3e3e3 #d6d6d6;
}
.info-circle-1:hover .info-circle-2{
	background-color: #f6f6f6;
	border-color: #dfdfdf #e9e9e9 #dfdfdf #cccccc;
}
/* --------------------------------------- */
@media screen and (max-width: 495px) {
	#splash img {
		width: 80%;
	}
	.big-screen {
		display: none;
	}
}
@media screen and (max-width: 380px) {
	.info-circle-1 {
		width: 125px;
		height: 125px;
	}
	.info-circle-2 {
		width: 90px;
		height: 90px;
	}
}