.home-section {
	height: calc(var(--sh-general) + 60px);

	background: url('../../assets/img/backgrounds/homepage-bg/home-bg.jpg'), var(--secondary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  padding-top: 40px;
  overflow: hidden;
}

.title {
  color: var(--neutral-1) !important;
  text-align: center !important;
  line-height: clamp(2.1875rem, 1.7474rem + 1.8779vw, 3.4375rem);
}

.plan-container {
	height: 100%;
	margin-top: 30px;
	flex-direction: column;
	align-items: center;
}

.plans-btns-container {
	gap: 10px;
	padding: 8px;
	background: var(--neutral-1);
	border: none;
	border-radius: 27px;
}

.plan-price-btn {
	font-family: var(--ff-special);
	font-weight: var(--fw-semibold);
	color: var(--neutral-2);
	background: var(--neutral-1);
	border: none;
	border-radius: 32px;
	padding: 4px 16px;
}

@media (hover: hover) {
  .plan-price-btn:hover {
		color: var(--neutral-2);
		background: var(--color-2);
    transition: 0.20s ease-in-out;
	}
}

.plan-price-btn-active {
	color: var(--neutral-1) !important;
	background: var(--primary) !important;
}

@media (max-width: 400px) {
	.plans-btns-container {
		gap: 5px;
		padding: 4px;
	}

	.plan-price-btn {
		padding: 4px 8px;
	}
}

.plans-price-container {
	margin-top: 30px;

	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.combo {
	font-family: var(--ff-special);
	font-size: 1rem;
	line-height: 24px;
	font-weight: var(--fw-semibold);
	color: var(--fourthiary);
}

.combo-price {
	color: var(--primary);
	font-size: 36px;
	line-height: 39.6px;
	font-weight: var(--fw-semibold);
}

.buy-plan-btn {
	color: var(--neutral-1);
	background: var(--fourthiary);
	padding: 12px 32px;
	font-family: var(--ff-special);
	font-weight: var(--fw-semibold);
	font-size: 16px;
}

.plan-types {
	margin-top: 30px;
	align-items: center;
	gap: 1rem;
}

@media (max-width: 800px) {
	.plan-types {
		display: none !important;
	}

	.home-section {
		padding-bottom: 40px;
	}
}

.plan-detail-container {
	border-radius: 20px 20px 0px 0px;
	padding-top: 1rem;
	padding-left: 1rem;
}

.plan-detail {
	max-width: 200px;
	flex-direction: column;
	gap: 10px;
}

.plan-title {
	font-size: 22px;
	line-height: 26.4px;
	font-weight: var(--fw-semibold);
}

.plan-description {
	font-size: 14px;
	line-height: 21px;
	font-weight: var(--fw-medium);
} 

.see-more-btn {
	background: var(--neutral-1);
	width: fit-content;
	padding: 12px, 16px, 12px, 16px;
}

@media (hover: hover) {
  .see-more-btn:hover {
    background: var(--primary);
    color: var(--neutral-1);
    transition: 0.20s ease-in-out;
  }
}

.b-kard-plan-bg {
	background: var(--color-1);
}

.b-admin-plan-bg {
	background: var(--color-3);
}

.b-lab-plan-bg {
	background: var(--color-2);
}

@media screen and (max-width: 1300px) {
	.plan-divisor {
  	display: none;
  }
}

@media screen and (max-width: 1232px) {
	.plan-detail-container {
		width: fit-content;
		height: 300px;
  	padding: 1rem;
  }

  .plan-img-container {
  	display: none;
  }
}

@media screen and (max-width: 950px) {
	.home-section {
		height: fit-content;
	}

	.plan-detail-container {
		height: 200px;
  }
}
