/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.circle-grid {
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.circle-grid:after,
.circle-item:before {
	content: '';
	display: table;
}

.circle-grid:after {
	clear: both;
}

.circle-grid li {
	width: 215px;  /* crescut de la 200px */
	height: 215px; /* crescut de la 200px */
	display: inline-block;
	margin: 5px;
}

.circle-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	cursor: default;
	box-shadow: 
		inset 0 0 0 10px rgba(255,255,255,0.6),
		0 1px 2px rgba(0,0,0,0.1);
	transition: all 0.4s ease-in-out;
}


.circle-info {
  position: absolute;
  background: rgba(75, 79, 84, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.circle-info h3 {
	color: #fff !important;
	text-transform: uppercase;
	font-size: 17px;
	margin: 0 20px;
	padding-top: 18px; /* redus de la 22px */
	font-family: 'Open Sans', Arial, sans-serif;
	line-height: 1.1;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);
	overflow-wrap: break-word;
}

.circle-info p {
	color: #fff;
	padding: 10px 5px 5px; /* redus paddingul vertical */
	margin: 0 20px;
	font-size: 13.5px;
	opacity: 0;
	transition: all 1s ease-in-out 0.4s;
}

.circle-info p a {
	display: block;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 1px;
	padding-top: 4px;
}

.circle-info p a:hover {
	color: rgba(255,242,34, 0.8);
}

.circle-item:hover {
	box-shadow: 
		inset 0 0 0 1px rgba(255,255,255,0.1),
		0 1px 2px rgba(0,0,0,0.1);
}

.circle-item:hover .circle-info {
	transform: scale(1);
	opacity: 1;
}

.circle-item:hover .circle-info p {
	opacity: 1;
}