body { margin: 0; padding: 0; box-sizing: border-box;}
.tf-table-wapper { padding-top:40px; }
.tf-table-main-wapper {max-width: 800px;width: 100%;margin: auto;position: relative;}

/* start css */
.tf-table-main {
    display: table;
    border-radius: 10px;
    position: relative;
    /*border: 1px solid #c1c0c0; */
    box-shadow: 0 0 6px 3px #c1c0c0;
    margin: 0 8px;
}
.tf-table-card { border-radius: 10px; position: relative; display: table-row-group; }
.tf-table-header {
  display: table-row;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tf-table-header .tf-table-col {
    background-color: #f0f0f0;
}
.tf-table-header .tf-table-col:first-child{ border-top-left-radius:10px; } 
.tf-table-header .tf-table-col:last-child{ border-top-right-radius:10px; } 
.tf-table-col:last-child { border-right:0; }
.tf-table-body { display: table-row;  }
.tf-table-col {display: table-cell;
    vertical-align: middle;
    padding: 16px 10px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    }
.tf-table-body:last-child .tf-table-col { border-bottom:0; }
.tf-table-col p{
    font-size: 20px;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #4c4c4c;
    text-align: center;
    margin: 0;
}
.tf-img-card {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 100%;
    max-width: unset;
}
.tf-img-card img {
    max-width: unset;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    border-radius: 0;
}
.tf-text-card p {
    font-size: 18px;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #4c4c4c;
    white-space: nowrap;
    margin: 0;
}
.tf-text-card ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tf-text-card ul li {
    font-size: 18px;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #4c4c4c;
    list-style-type: none;
}
.tf-button-card { text-align:center; }
.tf-button-card a {
    display: block;
    background: #21d182;
    border: 1px solid #15c576;
    color: #ffffff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    padding: 12px 24px;
    text-decoration: none;
    text-shadow: none;
}
.tf-button-card a:hover {
    background: #23e091;
    border: 1px solid #17d485;
}
/* end css */

@media(max-width:500px){
    .tf-table-header {display:none; }
    .tf-table-main {display:block;  border:0;}
    .tf-table-card {display:block; }
    .tf-table-col {border:0;display: block;}
    .tf-table-body {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #333;
        border-radius: 10px;
        margin-bottom: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .tf-table-body:last-child { 
        border-bottom:0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .tf-table-col:first-child { border-bottom: 0 solid #333; }
    .tf-text-card ul li {
        text-align: center;
    }
    .tf-img-card {
	    width: unset;
	    height: 100px;
	    margin: auto;
	    border-radius: 100%;
	    max-width: 200px;
	}
}
