Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to Web elements
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
	box-sizing: border-box;
}

body {
	margin: 0px;
}

.text-center {
	text-align: center;
}

.page-width {
	max-width: 1280px;
	width: 100%;
	padding: 0px 15px;
	margin: auto;
}

/**Typeo CSS End**/
.plans-scn, .plans-scn * {
	--page-width: 1280px;
	--base-clr: #444444;
	--base-fm: "Poppins", sans-serif;
	--base-fs: 16px;
	--title-fs: 35px;
	--white-clr: #ffffff;
	--black-clr: #000000;
	--theme-clr: #FF4820;
}

.plans-scn {
	width: 100%;
	padding: 50px 0px;
	font-family: var(--base-fm);
	font-size: var(--base-fs);
	color: var(--base-clr);
	text-align: center;
}

.plans-top-prt {
	max-width: 820px;
	margin: auto;
}

.plans-scn h2 {
	font-size: var(--title-fs);
	margin: 0px;
}

.plans-list {
	width: calc(100% + 30px);
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-left: -15px;
}

.plans-list .plans-item {
	width: calc(33.33% - 30px);
	margin: 15px;
	padding: 25px 15px;
	color: var(--white-clr);
	background: hsla(217, 100%, 50%, 1);
	background: linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(204, 100%, 60%, 1) 55%, hsla(186, 66%, 61%, 1) 100%);
	background: -moz-linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(204, 100%, 60%, 1) 55%, hsla(186, 66%, 61%, 1) 100%);
	background: -webkit-linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(204, 100%, 60%, 1) 55%, hsla(186, 66%, 61%, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0061FF", endColorstr="#33ADFF", GradientType=1);
}

.plans-list .plans-item:nth-child(2) {
	background: hsla(232, 73%, 65%, 1);
	background: linear-gradient(90deg, hsla(232, 73%, 65%, 1) 0%, hsla(279, 33%, 48%, 1) 100%);
	background: -moz-linear-gradient(90deg, hsla(232, 73%, 65%, 1) 0%, hsla(279, 33%, 48%, 1) 100%);
	background: -webkit-linear-gradient(90deg, hsla(232, 73%, 65%, 1) 0%, hsla(279, 33%, 48%, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6274E7", endColorstr="#8752A3", GradientType=1);
}

.plans-list .plans-item:nth-child(3) {
	background: hsla(33, 100%, 53%, 1);
	background: linear-gradient(90deg, hsla(33, 100%, 53%, 1) 0%, hsla(29, 100%, 68%, 1) 100%);
	background: -moz-linear-gradient(90deg, hsla(33, 100%, 53%, 1) 0%, hsla(29, 100%, 68%, 1) 100%);
	background: -webkit-linear-gradient(90deg, hsla(33, 100%, 53%, 1) 0%, hsla(29, 100%, 68%, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF930F", endColorstr="#FFAB5C", GradientType=1);
}

.plans-scn .itemplan {
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
}

.itemprice {
	font-size: 40px;
	font-weight: 700;
}

.itemprice * {
	font-weight: 400;
}

.itemprice sub {
	font-size: 22px;
	position: relative;
	top: -10px;
}

.plans-features {
	width: 100%;
	max-width: 330px;
	margin: 10px auto 0px auto;
}

.plans-features .f-item {
	width: 100%;
	padding: 12px;
	font-weight: 500;
}

.plans-features .f-item:nth-child(2n+2) {
	background-color: rgba(0, 0, 0, 0.1);
}

.plans-scn .planbtn {
	border: var(--white-clr) 2px solid;
	color: var(--white-clr);
	padding: 10px 26px;
	min-width: 200px;
	display: inline-block;
	text-decoration: none;
	margin-top: 30px;
	font-weight: 500;
	border-radius: 4px;
	transition: 0.5s all;
}

.plans-scn .planbtn:hover {
	background-color: var(--white-clr);
	color: var(--black-clr);
}

@media(max-width:1100px) {
	.plans-scn {
		padding: 30px 0;
	}

	.plans-list {
		width: calc(100% + 14px);
		margin-left: -7px;
	}

	.plans-list .plans-item {
		width: calc(33.33% - 14px);
		margin: 7px;
		padding: 15px 10px;
	}

}

@media(max-width:767px) {
	.plans-scn h2 {
		font-size: calc(var(--title-fs) - 8px);
	}

	.plans-scn p {
		margin-top: 0px;
	}

	.plans-list {
		width: 100%;
		margin-left: 0;
	}

	.plans-list .plans-item {
		width: 100%;
		margin: 7px 0;
		padding: 25px 10px;
	}

	.plans-question-bar .contact-btn {
		padding: 6px 16px;
		display: inline-block;
		margin-left: 0px;
	}

	.plans-scn .planbtn {
		padding: 10px 20px;
		min-width: 160px;
	}

}

Related Web Elements