/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&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: 'Nunito', sans-serif;
--base-fs: 16px;
--itemtitle-fs: 24px;
--price-fs: 50px;
--title-fs: 35px;
--white-clr: #ffffff;
--black-clr: #000000;
--theme-clr: #7613c6;
}
.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;
color: var(--black-clr);
font-weight: 700;
}
.plans-list {
width: calc(100% + 30px);
display: flex;
flex-flow: row wrap;
margin-left: -15px;
margin-top: 50px;
}
.plans-list .plans-item {
position: relative;
width: calc(33.33% - 30px);
margin: 15px;
background-color: var(--theme-clr);
color: var(--base-clr);
border-radius: 10px;
border: #f3f3f3 1px solid;
box-shadow: rgba(0, 0, 0, 0.1) 0 0 12px;
}
.pricing-table {
text-align: center;
padding: 30px 0;
-webkit-transition: .3s ease-in;
transition: .3s ease-in;
position: relative;
z-index: 1;
border-radius: 3px;
overflow: hidden;
-webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}
.pricing-table .price-header .title {
color: #ffffff;
font-size: var(--itemtitle-fs);
font-weight: 700;
text-transform: uppercase;
margin-bottom: 30px;
}
.pricing-table .price-header .price {
color: #000000;
font-size: var(--price-fs);
font-weight: 700;
-webkit-transition: .3s ease-in;
transition: .3s ease-in;
text-align: left;
position: relative;
padding: 15px 0 15px 65px;
z-index: 1;
letter-spacing: 2px;
}
.pricing-table .price-header .price::after {
position: absolute;
left: -15%;
top: 0;
width: 100%;
background-color: #ffffff;
border-radius: 25px;
content: '';
height: 100%;
-webkit-transform: skewX(-35deg);
transform: skewX(-35deg);
z-index: -1;
}
.pricing-table .price-header .price .dollar {
font-size: 18px;
font-weight: 900;
position: relative;
top: -25px;
}
.pricing-table .price-header .price .month {
font-size: 15px;
font-weight: 700;
}
.pricing-table .price-body ul {
margin: 30px 0;
padding: 0;
list-style-type: none;
}
.pricing-table .price-body ul li {
color: #ffffff;
margin-bottom: 10px;
}
.pricing-table .price-body ul li:last-child {
margin-bottom: 0;
}
.pricing-table .price-footer .btn:hover::after, .pricing-table .price-footer .btn:hover::before {
background: #ffffff;
}
.pricing-table .price-footer .btn-primary:not(:disabled):not(.disabled).active, .pricing-table .price-footer .btn-primary:not(:disabled):not(.disabled):active, .pricing-table .price-footer .btn-primary .show > .btn-primary.dropdown-toggle {
background: #ffffff;
}
.pricing-table .price-footer .btn-primary:hover, .pricing-table .price-footer .btn-primary:focus {
background: #ffffff;
}
.pricing-table:hover {
-webkit-transform: translateY(-7px);
transform: translateY(-7px);
}
@media(max-width:1100px) {
.plans-list .plans-item {
width: calc(33.33% - 14px);
margin: 7px;
}
.pricing-table .price-header .price {
padding-left: 25px;
}
.pricing-table .price-header .title {
margin-bottom: 20px;
margin-top: 0px;
}
.pricing-table .price-body ul {
margin: 20px 0;
}
}
@media(max-width:767px) {
.plans-scn {
padding: 30px 0px;
}
.plans-scn h2 {
font-size: calc(var(--title-fs) - 10px);
}
.plans-list {
width: 100%;
margin-left: 0px;
margin-top: 20px;
}
.plans-list .plans-item {
width: 100%;
margin: 10px 0;
}
.pricing-table .price-header .price {
padding-left: 50px;
}
}