/* Text */
ul,
li {
	list-style-type: none;
}

a,
p {
	text-decoration: none;
	color: var(--grey-text);
}

pre {
	background: #26292e;
	padding: 1px 5px;
	margin: 0 5px;
	border-radius: 5px;
	color: #f75f54;
	border: #000000 1px solid;
	font-family: 'Courier New', monospace;
	white-space: pre-wrap;
}

/* Scroll Bar */
::-webkit-scrollbar {
	width: 12px;
	height: 8px;
	border: 2px solid transparent;
	background-clip: padding-box;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-corner {
	background-color: transparent;
}

::-webkit-scrollbar-track {
	border: 3px solid transparent;
}

::-webkit-scrollbar-thumb {
	width: 10px;
	background: #202024;
	background-clip: padding-box;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
	width: 10px;
	background: #19191c;
	background-clip: padding-box;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	border: 2px solid transparent;
}

/* Containers */
.container {
	max-width: 90%;
	margin: 0 auto;
	overflow: auto;
	padding: 0 40px;
	text-align: left;
}

.full {
	max-width: 100%;
}

/* Grid */
.grid {
	height: 100%;
	display: grid;
	grid-gap: 20px;
	align-items: center;
	justify-content: center;
	grid-template-columns: repeat(2, 1fr);
}

grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

/* Flex */
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: left;
}

/* Cards */
.card {
	background-color: var(--secondary-color);
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	margin: 10px;
	width: auto;
	text-align: left;
}

.card-cen {
	background-color: var(--secondary-color);
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	margin: 10px;
	width: auto;
	text-align: center;
}
.plan-cards {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.plan-card1 {
	height: 50vh;
	width: 270px;
	background-color: #202024;
	border-radius: .7vh;
	display: flex;
	justify-content: center;
	padding: .5vh;
}
/* @media only screen and (max-width:600px) {
	.plan-cards {
	  display: flex;
	  flex-direction: column;
	  margin-bottom: 5%;
	}
} */
@media only screen and (max-width: 550px) {
	.plan-cards {
	  display: flex;
	  flex-direction: column;
	  margin-bottom: 5%;
  	}
	.showcase-plans {
		height: 1400px;
	}
}
  @media only screen and (max-width: 425px) {
	.plan-cards {
	  display: flex;
	  flex-direction: column;
	  margin-bottom: 5%;
  	}	
}
  @media only screen and (max-width: 320px) {
	.plan-cards {
	  display: flex;
	  flex-direction: column;
	  margin-bottom: 5%;
  	}
}
.plan-card1 .inner {
	display: flex;
	flex-direction: column;
	width: 100%;

}
.plan-card1 .inner .head {
	text-align: center;
	border-bottom: 1px solid white;
	height: fit-content;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3%;
	margin-bottom: 5%;
}

.plan-card1 .inner .cost {
	text-align: center;
	font-size: 28px;
	color: #7289DA
}
.plan-card1 .inner .cost .month {
	font-size: 10px;
}
.plan-card1 .inner button {
	width: 90%;
	font-size: 20px;
	margin: auto;
	color: white;
	background-color: #7289DA;
	border: none;
	border-radius: 2vh;
	padding: .7vh;
	outline: none;	
}

.plan-card1 .inner button:hover {
	color: white;
	background-color: #7289dacf;
	cursor: pointer;
}