.pricing-card-1 {
    border: 2px solid var(--site-color-900);
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px var(--site-color-100);
    padding: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card-1 > ul {
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
    margin-top: 15px;
    max-width: 350px;
    margin-bottom: 15px;
    transition: 0.5s all ease;
}

.view-more {
    width: 100%;
    text-align: center;
    padding: 5px;
    background-color: #fff;
}

.view-more > button {
    border: none;
    background-color: var(--site-color-900);
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    width: 100%;
    padding: 15px 0px;
    border-radius: 30px;
}

.pricing-card-1 > ul > li {
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pricing-card-1 > ul > li > i {
    margin-right: 10px;
    color: var(--site-color-900);
    font-size: 20px;
}

.pricing-card-1 > ul > li:nth-child(odd) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-card-1 > ul > li:nth-child(even) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pricing-card-1 > h3 {
    width: 100%;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--site-color-900);
    color: #fff;
    padding: 10px 0px;
}

.pricing-card-1 > p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    background-color: var(--site-color-100);
    border-radius: 30px;
    color: var(--site-color-1000);
    padding: 5px 25px;
}
