.plans {
	padding: 48px 0px;
	background: #fff;
}

.plans h1 {
	color: #000;
	margin-bottom: 32px;
}

.plans .cards {
  display: flex;
  justify-content: space-between;
  gap: 10%;
}

@media only screen and (max-width: 768px) {
  .plans .cards {
    flex-direction: column;
    gap: 1.5em;
  }
}

.free-plan {
  position: relative;
}
.free-plan::before {
  position: absolute;
  top: -3.3em;
  right: 0;
  content: '';
  background: url(../img/bunny-peeking.svg) top right no-repeat;
  background-size: 3em auto;
  width: 3em;
  height: 4em;
}
.free-plan:hover::before {
    cursor: url('../img/cursor-carrot.svg'), auto;
}



.plan-box {
  flex: 1;
  position: relative;
	border-radius: 12px;
	background: #F8FAFC;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 32px;
}
.plan-box .type {
  position: absolute;
  right: 1.2em;
  top: 2em;
	border-radius: 12px;
	background: #001955;
	padding: 0px 12px;
	color: #fff;
	margin: 0px;
	height: 24px;
  font-size: 16px;
  line-height: 24px;
}

.plan-box h2 {
	margin: 5px 0px 16px 0px;
	color: #000;
}

.plan-box ul {
	margin: 25px 0px 0px 0px;
	padding: 0px;
	list-style: none;
}

.plan-box .btn {
	border-radius: 6px;
	background: #001955;
	color: #fff;
	padding: 8px 16px;
	font-size: 14px;
	border: 0px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}

.plan-box ul li {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	background: url(../img/icon-list.svg) center left no-repeat;
	padding-left: 30px;
	margin-bottom: 12px;
}
