/* Colors defined in Custom Variables in custom.css */


.wrapper-cards-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 2px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: row;
    gap: 10px;
    /* [disabled]max-width: 900px; */
    /* [disabled]background-color: beige; */
    margin-top: 30px;
}
	

.card {
    width: 250px;
    height: 260px;
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* [disabled]box-shadow: 0 14px 26px rgba(0,0,0,0.04); */
    transition: all 0.3s ease-out;
    /* [disabled]border: 1px solid #ccc; */
    text-decoration: none;
    /* [disabled]-webkit-box-shadow: 0 14px 26px rgba(0,0,0,0.04); */
}

.card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    /* [disabled]box-shadow: 0 24px 36px rgba(0,0,0,0.11),
    0 6px 6px #ccc; */
    /* [disabled]-webkit-box-shadow: 0 24px 36px rgba(0,0,0,0.11),0 6px 6px #ccc; */
}

.card .icon {
	fill: var(--card-bg);
	transition: .3s;
}
.card:hover .icon {
	fill: var(--card-bg-hover);
}


.card:hover .overlay {
  transform: scale(4) translateZ(0);
}

.card:hover .circle {
  border-color: var(--card-bg);
  background: var(--card-bg-hover);
}

.card:hover .circle:after {
  background: var(--card-bg);
}

.card:hover p {
  color: var(--color-light);
}

.card:active {
    transform: scale(1) translateZ(0);
    /* [disabled]box-shadow: 0 15px 24px rgba(0,0,0,0.11),
    0 15px 24px var(--box-shadow-color); */
    /* [disabled]-webkit-box-shadow: 0 15px 24px rgba(0,0,0,0.11),0 15px 24px var( --box-shadow-color ); */
}

.card p {
  font-size: 17px;
  color: var(--color-dark);
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
}

.card .content {
    position: absolute;
    bottom: 20px;
    /* [disabled]background-color: #ccc; */
}


.card h2 {
    font-weight: bolder;
    font-size: 1.2rem;
    line-height: 1;
    /* [disabled]text-transform: uppercase; */
    padding: 0 16px;
    letter-spacing: 0px;
    color: var(--color-dark);
}
.card:hover h2 {
  color: var(--color-light);
}

.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
    top: -30px;
}

.circle:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--card-bg-hover);
  border-radius: 50%;
  top: 5px;
  left: 5px;
  transition: opacity 0.3s ease-out;
}

.circle svg {
  z-index: 10000;
  transform: translateZ(0);
}

.overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--card-bg-hover);
    top: 40px;
    left: auto;
    z-index: 0;
    transition: transform 0.3s ease-out;
}
