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(4, 84%, 49%, 1);
    background: linear-gradient(90deg, hsla(4, 84%, 49%, 1) 0%, hsla(37, 89%, 52%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(4, 84%, 49%, 1) 0%, hsla(37, 89%, 52%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(4, 84%, 49%, 1) 0%, hsla(37, 89%, 52%, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E62314", endColorstr="#F19E18", GradientType=1);
}

.plans-list .plans-item:nth-child(2) {
    background: hsla(358, 85%, 68%, 1);
    background: linear-gradient(90deg, hsla(358, 85%, 68%, 1) 0%, hsla(41, 98%, 49%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(358, 85%, 68%, 1) 0%, hsla(41, 98%, 49%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(358, 85%, 68%, 1) 0%, hsla(41, 98%, 49%, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F3696E", endColorstr="#F8A902", 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);
}

.plans-question-bar {
    background-color: var(--base-clr);
    max-width: 800px;
    margin: auto;
    color: var(--white-clr);
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

.plans-question-bar .contact-btn {
    background-color: var(--white-clr);
    padding: 10px 20px;
    display: inline-block;
    color: var(--black-clr);
    text-decoration: none;
    border-radius: 4px;
    margin-left: 10px;
    transition: 0.5s all;
}

.plans-question-bar .contact-btn:hover {
    background-color: var(--theme-clr);
    color: var(--white-clr);
}

@media(max-width:992px) {
    .plans-list {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .plans-list .plans-item {
        width: calc(50% - 20px);
        margin: 10px;
    }

}

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

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

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

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

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

}

.plans-question-bar .contact-btn {
    padding: 7px 15px;
}

Related Web Elements