 
.w3l-pricingplans {
    padding: 40px 40px;
    justify-content: center;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
}

h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: var(--heading-color);
}

.w3l-packages {
    width: 90%;
    margin: 40px auto;
    align-items: center;
    display: flex;
    justify-content: center;
}

.feature-gd {
 -webkit-transition: .5s linear;
    transition: .5s linear;
    position: relative;
}


.feature-gd:hover {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    transform: translateY(-20px);
}

.grids-feature:hover {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    transform: translateY(-20px);
}

.box-wrap:hover {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    transform: translateY(-20px);
}

.btn:hover {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    transform: translateY(-15px);
}
 
.package {
    width: 350px;
    margin: 0 5px;
    box-sizing: border-box;
    border: 2px solid #e8e8e8;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    display: inline-block;
    padding: 15px 15px;
    text-align: center;
    -webkit-transition: .5s linear;
    transition: .5s linear;
    position: relative;
}

.package:hover {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    transform: translateY(-20px);
}

.name {
    color: var(--heading-color);
    font-size: 25px;
    font-weight: 500;
}

.price {
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--font-color);
}

 hr {
    background-color: #dedede;
    border: none;
    height: 1px;
}

 

 .trial {
    font-size: .9rem;
    font-weight: 600;
    padding: 5px 20px 5px 20px;
    color: var(--primary-color);
    border: 1px solid #e4e4e4;
    display: inline-block;
    border-radius: 15px;
    background-color: white;
    position: relative;
    bottom: -20px;
}

.package  ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 50px;
}

.package li {
    margin-bottom: 7px;
    font-size: 17px;
    color: var(--font-color);
    font-weight:500;
}

.package li:before {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 3px;
}

  .checkIcon, .package
li:before {
    font-family: "FontAwesome";
    content: "\f105";
}

.brilliant::after {
    font-family: "FontAwesome";
    content: "\f007";
}

.brilliant {
    border-color: var(--primary-color);
}

.brilliant::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 64px 0 0;
    border-color: var(--primary-color) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
}

.brilliant::after {
    color: white;
    position: absolute;
    left: 9px;
    top: 9px;
    text-shadow: 0 0 2px var(--primary-color);
    font-size: 1.2rem;
}
button.get {
    border: none;
    outline: none;
    font-size: 18px;
    margin-top: 10px;
    color: var(--primary-color);
    background: rgba(170, 170, 170, 0.1);
    padding: 12px 25px;
    border-radius: var(--border-radius);
}
button.get:hover {
    background: var(--primary-color);
    color: #fff;
}
.brilliant button.get {
    background: var(--primary-color);
    color: #fff;
}
 
/*-- responsive design starts --*/
@media (max-width: 991px){
    .w3l-packages {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 736px){
    .w3l-packages {
        display: flex;
        flex-direction: column;
    }
    .package.brilliant{
        margin: 30px 0;
    }
}
@media (max-width: 480px){
    h1 {
        font-size: 35px;
    }
    .w3l-packages {
        margin: 25px auto;
    }
}
@media (max-width: 384px){
    .package {
        width: 100%;
    }
    .w3l-pricingplans {
        padding: 30px 0px;
    }
    .name {
        font-size: 25px;
    }
}
    
@media (max-width: 375px){
    h1 {
        font-size: 30px;
    }
    .copy-right p {
        font-size: 17px;
    }
}
 