/* -- logo for mobile devices --------------------------------- */
#phone-visible{
	display: none;
}
/* -- training program ---------------------------------------- */
#training-wrap {
	display: flex;
	justify-content: space-evenly;
	gap: 10px;
	flex-wrap: wrap;
}
.training {
	display: inline-block;
	text-align: center;
	max-width: 170px;
}
.training img {
	border-radius: 8px;
}
.training img:hover {
	background-color: #eeeeee;
}
.training-inf {
	font-size: 15px;
}

/* -- more info ---------------------------------------------- */
.info-wrapper {
	display: flex;
	justify-content: space-evenly;
	gap: 10px;
	flex-wrap: wrap;
}
.link-green,
.link-green:hover,
.link-green:active {
	color: var(--color-prime);
}
.link-blue,
.link-blue:hover,
.link-blue:active {
	color: #0055bb;
}
/* -- circles -- */
.info-circle-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	text-align: center;
	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 {
	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;
}
/* -- circle colors -- */
.circle-gray {
	background-color: #e9e9e9;
}
.circle-gray:hover,
.circle-gray:active {
	background-color: #d9d9d9;
}
.circle-blue {
	background-color: #e1eaf1;
}
.circle-blue:hover,
.circle-blue:active {
	background-color: #c0d2e0;
	background-color: #c7d7e4;
}
/* ============================================================================
 *    screen size
 * ============================================================================ */
@media screen and (max-width: 450px) {
	#phone-visible{
		display: block;
	}
	#phone-logo{
		max-width: 150px;
		margin: auto;
	}
	#phone-logo img {
		width: 100%;
	}
}
@media screen and (max-width: 495px) {
	.big-screen {
		display: none;
	}
}
@media screen and (max-width: 380px) {
	.training {
		width: 133px;
	}
	.info-circle-1 {
		width: 125px;
		height: 125px;
	}
	.info-circle-2 {
		width: 90px;
		height: 90px;
	}
}