#infos {
  position: absolute;
  top: 10px; right: 0;
  width: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#infos div {
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#infos ion-icon {
  font-size: 30px;
  color: var(--back);
  filter: drop-shadow(0px 0px 1px black);
  cursor: pointer;
}
#infos #change {
  display: flex;
  flex-wrap: wrap;
}
#infos .btnc {
  width: 15px; height: 15px;
  cursor: pointer;
}
#infos .btnc:nth-child(1) {
  border-radius: 50% 0 0 0;
}
#infos .btnc:nth-child(2) {
  border-radius: 0 50% 0 0;
}
#infos .btnc:nth-child(3) {
  border-radius: 0 0 0 50%;
}
#infos .btnc:nth-child(4) {
  border-radius: 0 0 50% 0;
}


/* ! INF */
#inf.cache {
  display: none;
}
#inf {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
#inf #inf_page #ferm {
  position: absolute;
  cursor: pointer;
  color: var(--back);
  font-size: 32px;
  top: 10px;
  right: 10px;
  filter: drop-shadow(1px 1px 1px black);
}
#inf #inf_page {
  position: relative;
  width: 80%;
  height: 90%;
  border-radius: 20px;
  background: var(--scroll);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Adam', sans-serif;
  box-shadow: 0px 0px 10px white, inset 0px 0px 12px white;
  padding: 20px;
}
#inf #inf_page #cardBox {
  display: flex;
  justify-content: center;
  width: 525px;
	height: 300px;
	perspective: 1000px;
}
#inf #inf_page #cardBox .card {
	position: relative;
	width: 100%;
  height: 100%;
	background: #262626;
	transform-style: preserve-3d;
	transition: 1s ease;
}
#inf #inf_page #cardBox .card .card-front,
#inf #inf_page #cardBox .card .card-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  box-shadow: 0px 0px 12px black;
	backface-visibility: hidden;
}
#inf #inf_page #cardBox .card .card-front {
	display: flex;
	font-size: 32px;
	justify-content: center;
	align-items: center;
	background: var(--back);
	color: #fff;
  text-shadow: 2px 2px 4px black;
	font-family: 'Adam', sans-serif;
	overflow: hidden;
}
#inf #inf_page #cardBox .card .card-front .content {
	text-align: center;
}
#inf #inf_page #cardBox .card .card-front img {
	height: 150px;
}
#inf #inf_page #cardBox .card .card-front h3 {
	margin: 20px 0 0;
	padding: 0;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 5px;
	color: #fff;
}
#inf #inf_page #cardBox .card .card-back {
	background: #fff;
	color: #262626;
}
#inf #inf_page #cardBox .card .card-back .content {
	position: relative;
	width: 100%;
	height: 100%;
}
#inf #inf_page #cardBox .card .card-back .content .logo {
	padding: 20px 40px 0;
	display: flex;
	justify-content: left;
	align-items: center;
}
#inf #inf_page #cardBox .card .card-back .content .logo img {
	height: 110px;
	padding-right: 20px;
	border-right: 1px solid #262626;
}
#inf #inf_page #cardBox .card .card-back .content .logo h2 {
	margin: 0;
	padding: 0;
	padding-left: 20px;
	text-transform: uppercase;
}
#inf #inf_page #cardBox .card .card-back .content ul {
	position: absolute;
	width: 100%;
	height: 150px;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 20px 40px;
	box-sizing: border-box;
	background-color: silver;
	border-top: 10px solid var(--back);
}
#inf #inf_page #cardBox .card .card-back .content ul li {
	list-style: none;
	color: #000;
	padding: 4px 0;
	font-size: 16px;
	font-family: 'Adam', sans-serif;
	text-transform: uppercase;
}
#inf #inf_page #cardBox .card .card-back .content ul li span:nth-child(1) {
	width: 40px;
	display: inline-block;
}
#inf #inf_page #cardBox:hover .card {
	transform: rotateY(180deg)
}
#inf #inf_page #cardBox .card .card-back {
	transform: rotateY(180deg)
}
#inf #inf_page #donnees {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
#inf #inf_page #donnees #graphe, #inf #inf_page #donnees #soft {
  border-radius: 20px;
  padding: 10px;
  max-width: 49%;
  background: rgba(0,0,0,0.2);
  box-shadow: 2px 2px 5px black;
}
#inf #inf_page #donnees #graphe {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 20px 20px 20px;
  width: 80%;
}
#inf #inf_page #donnees #graphe p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
#inf #inf_page #donnees #graphe .skill {
  width: 100%;
  height: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 5px 0;
}
#inf #inf_page #donnees #graphe .skill div {
  height: 100%;
  color: #222;
  line-height: 20px;
  width: 0%;
  animation: fill 8s forwards;
  text-align: center;
  padding-right: 10px;
  font-size: 18px;
  font-weight: bold;
}
@keyframes fill {
  100% {
    width: 100%;
  }
}
#inf #inf_page #donnees #graphe .html {
  background: #80bfff;
  max-width: 90%;
}
#inf #inf_page #donnees #graphe .css {
  background: #ff4d94;
  max-width: 80%;
}
#inf #inf_page #donnees #graphe .js {
  background: #ffff4d;
  max-width: 40%;
}
#inf #inf_page #donnees #graphe .php {
  background: #99ff66;
  max-width: 60%;
}
#inf #inf_page #donnees #separ {
  width: 4px;
  margin: 0 10px;
  height: 100%;
  background: var(--back);
  box-shadow: 1px 1px 2px rgba(160, 160, 160, 0.6);
}
#inf #inf_page #donnees #soft {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  font-size: 64px;
  color: silver;
  width: 80%;
}
#inf #inf_page #donnees #soft ion-icon {
  padding: 25px;
  filter: drop-shadow(1px 1px 1px white);
}