.page-wrap {
    padding: 40px 0;
}

.section-head {
    text-align: left;
}

.section-head h2:after {
    margin-left: 0;
}

.section-body .editor {
    line-height: 1.8;
}

.section-body .editor h4 {
    margin-top:20px;
    font-size: 20px;
    color: var(--main-blue);
}

.section-body .editor table {
    font-family: "Work Sans", sans-serif;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .05);
    border-radius: 15px;
    overflow: hidden;
}

.section-body .editor table th,
.section-body .editor table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #d9d9d980;
}

.section-body .editor table thead th {
    background: var(--another-blue);
    color: #fff;
    font-size:18px;
}

.section-body .editor table tbody th{
    font-weight: normal;
    background: #fcfcfc;
}

@media(max-width:767px){
    .section-body .editor .scroll{
        overflow-x: auto;
        overflow-y: hidden;
    }

    .section-body .editor .scroll table{
        min-width: 1200px;
    }

    .section-body .editor .scroll::-webkit-scrollbar {
        height: 10px;
    }

    .section-body .editor .scroll::-webkit-scrollbar-thumb {
        background: #39b2d9;
        background-clip: padding-box;
        border-radius: 10px;
    }
}


