<style>
  body {
        font-family: Montserrat, sans-serif;
    }
    .allPriceHolder {
        display: flex;
        width: 100%;
        max-width: 1350px;
        margin: auto;
        text-align: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .priceBox {
        width: 30%;
        border: 1px solid #eeeeee;
        border-radius: 6px;
        padding: 40px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1)
    }
    .packageTitle {
        color: #1257a8;
        font-size: 20px;
        line-height: 1em;
        font-weight: 700;
        margin-top: 0px;
    }
    .largePrice {
        font-size: 25px;
        color: #000000;
        line-height: 1em;
        font-weight: 700;
    }
    button {
        background-color: #00caab;
        border: none;
        border-radius: 4px;
        padding: 10px 15px 10px 15px;
        color: #ffffff;
        margin-top: 0px;
        width: 90%;
        min-width: 200px;
        font-weight: bold !important;
    }
    button:hover {
        background-color: #13a88e;
    }
    .tableDivider {
        width: 80%;
        height: 1px;
        background-color: #eeeeee;
        margin: 20px 0px 10px 0px;
    }
    .feature {
        font-weight: 700;
        font-size: 15px;
        line-height: 1em;
    }
    p {
        font-size: 15px;
        font-weight: normal;
    }
    .priceNo {
        font-weight: 700;
        min-height: 50px;
        font-size: 18px;
    }
    .savings {
        color: #1257a8;
        font-weight: normal;
        font-size: 18px;
    }
    /* Tabs */
    /* Style the tab */
    .tab {
        overflow: hidden;
        margin-bottom: 20px;
        font-size: 15px;
        font-weight: 700;
        font-family: Montserrat, sans-serif;
        text-align: center;
    }
    .tablinks {
        margin-right: 10px;
    }
    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: #d0d0d0;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 10px;
        transition: 0.3s;
        width: 200px;
        color: #333;
    }
    /* Change background color of buttons on hover */
    .tab button:hover {
        background-color: #ddd;
    }
    /* Create an active/current tablink class */
    .tab button.active {
        background-color: #00caab;
        color: #ffffff;
    }
    /* Style the tab content */
    .tabcontent {
        display: none;
        padding: 6px 12px;
        border: none;
        border-top: none;
    }
    .tabcontent#monthly {
        display: block;
    }
    .cost2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 133px;
        margin-bottom: 0px;
    }
    .btn1 {
        padding-right: 20px;
    }
    .fine {
        text-align: center;
    }
    /* Medium devices (landscape tablets, 768px and up) */
    @media only screen and (max-width: 768px) {
        .priceBox {
            width: 90%;
            border: 1px solid #eeeeee;
            border-radius: 6px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 60px;
        }
        .cost2 {
            min-height: auto;
            margin-bottom: 0px;
        }
    }
 </style>