@charset "utf-8";

.middle {
  width: 100%;
  text-align: center;
}
.middle input[type=radio] {
  display: none;

}
.middle input[type=radio]:checked + .box {
  background-color: #1cc88a;
    font-weight: 900;
}
.middle input[type=radio]:checked + .box span {
  color: white;
}
.middle input[type=radio]:checked + .box span:before {
  transform: translateY(0px);
  opacity: 1;
}
.middle .box {
	width: 150px;
	height: 150px;
	transition: all 250ms ease;
	will-change: transition;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	position: relative;
	border-radius:10rem;
	background-color: #eee;
	background-image: url(../../portal/assets/img/bgplanes.png);
	margin-right: 10px;
	margin-left: 10px;
}
.middle .box:active {
  transform: translateY(10px);
}
.middle .box span {
  position: absolute;
  transform: translate(0, 60px);
  left: 0;
  right: 0;
  transition: all 300ms ease;
  font-size: 1.5em;
  user-select: none; 
}
.middle .box span:before {
  font-size: 1.2em;
  font-family: FontAwesome;
  display: block;
  transform: translateY(-80px);
  opacity: 0;
  transition: all 300ms ease-in-out;
  font-weight: normal;
  color: white;
}
.middle .front-end span:before {
display: block;
}
.middle .back-end span:before {
  content: "\f0d0";
}
.middle p {
  color: #fff;
  font-weight: 400;
}
.middle p a {
  text-decoration: underline;
  font-weight: bold;
  color: #fff;
}
.middle p span:after {
  content: "\f0d0";
  font-family: FontAwesome;
  color: yellow;
}
