body {
    font-family: "Be Vietnam Pro", sans-serif;
    margin: 0;
    height: 1000px;
}

/*-header styling-*/
.header-container {
    width: 100%;
    height: 180px;
    background-color: #F8FAFC;
    background-image: url("/resources/bg-pattern.png");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(128, 128, 128, 0.137);
}

.title {
    font-weight: 700;
    font-size: 32px;
    color: #121826;
    margin-bottom: 10px;
}

.subtitle {
    width: 450px;
    color: #4D5562;
}

/*-main & grid-container-*/

.main-container {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: 250px 250px 250px 250px 250px;  
}

/*CSS for cells*/

/*feature-cells-column1*/
.feature-cell, .first-feature-cell, .last-feature-cell {
    background-color: #F8FAFC;
    padding: 15px 20px 15px 15px;
    border-bottom: 2px solid rgba(128, 128, 128, 0.062);
    font-size: 16px;
    font-weight: 600;

}

.first-feature-cell {
    border-top-left-radius: 20px;                            /*border-radius only for first and last feature-cell*/
}

.last-feature-cell {
    border-bottom-left-radius: 20px;                         /*border-radius only for first and last feature-cell*/
}


/*plan-header-cells*/
.type {
    color: #263FA9;
    font-weight: 700;
    font-size: 16px;
}

.price {
    font-size: 64px;
    font-weight: 600;
    margin: 0;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header-popular {                                      /*popular*/
    background-color: #121826;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.type-popular {                                             /*popular*/
    color: white;
    font-weight: 400;
    font-size: 16px;
    border-radius: 20px;
    background-color: #263FA9;
    padding: 5px 12px ;
    margin-top: 15px;
    margin-bottom: 5px;
}

.price-popular {                                            /*popular*/
    font-size: 64px;
    font-weight: 400;
    margin: 0;
    color: white;
}

.period-popular {                                           /*popular*/
    padding: 16px 0;
    color: white;
    font-weight: 400;
    margin-top: 0;
}



/*value-cells*/ 

.value-cell {
    background-color: #FFFFFF;
    padding: 15px 20px 15px 15px;
    border-bottom: 2px solid rgba(128, 128, 128, 0.062);
    font-size: 16px;
    font-weight: 400;
}

.value-cell-popular {                                        /*popular*/
    background-color: #121826;
    color: white;
    padding: 15px 20px 15px 15px;
    font-size: 16px;
    font-weight: 400;
}

.last-value-cell, .last-value-cell-popular {                  /*popular*/
    display: flex;
    justify-content: center;
    color: #263FA9;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 15px 20px 15px 15px;
}

.last-value-cell-popular {                                     /*popular*/
    background-color: #7C4F1E;
    color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}