.block-table{
    display: block;
}
.block-table .intro{
    text-align: center;
    margin-bottom: 45px;
}

.block-table .intro h2 {
    font-size: 3em;
    color: #1e2122;
    margin: 0 0 15px;
    text-align: center;
    background-color: #ffffff;
    background-image: linear-gradient(135deg, #004580 20%, #00A1E9 80%);
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid transparent;
    line-height: 1.2;
    font-family: 'Mulish';
    font-weight: 700;
}

.block-table .intro span{
    text-align: center;
    display: inline-block;
    width: 670px;
    color: #1e2122;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.block-table .table-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.block-table .table-row .table-col{
    display: inline-block;
    padding: 10px 5px;
    width: 100px;
    margin: 0px 3px;
    background: #f2f2f3;
    text-align: center;
    vertical-align: top;
    color: #3aaa35;
}

.block-table .table-row .table-col-1{
    width: 260px;
    text-align: left;
    background-color: unset;
    color:#222;
    display: flex;
    justify-content: left; /* Horizontal center alignment */
}

.block-table .table-row-1 .table-col{
    color:#FFF;
    background-color: #0099FF;
    display: flex;
    align-items: center; /* Vertical center alignment */
    justify-content: center; /* Horizontal center alignment */
}

.block-table .table-row-1 .table-col-1{
    background-color: unset;
    color:unset;
    font-weight: bold;
    justify-content: left; /* Horizontal center alignment */
}

.block-table .table-wrapper{
    justify-content: center;
    display: flex;
}

.block-table .table-wrapper .table {
    -webkit-box-shadow: 0 7px 20px 1px rgba(100, 100, 100, 0.2);
    box-shadow: 0 7px 20px 1px rgba(100, 100, 100, 0.2);
    width: 818px;
    padding-left: 25px;
    line-height: 20px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.block-table .bottom-content{
    text-align: center;
}

.block-table a.table-toggler{
    text-align: center;
    color: unset;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 30px;
    margin-top: 15px;
}

.block-table a.table-toggler:hover{
    text-decoration: none;
}

.block-table a.table-toggler:after {
    content: '';
    width: 13px;
    height: 13px;
    position: relative;
    display: inline-block;
    top: 1.5px;
    left: 0;
    background: url('/wp-content/themes/ai3/template-parts/block-table/arrow-down-sign-to-navigate.svg') center center no-repeat;
    background-size: 13px 13px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-left: 11px;
}

.block-table a.table-toggler.active:after {
    transform: rotate(180deg);
}

/* Mobile Styles */

@media screen and (max-width: 767px){
    .block-table .intro span{
        width: 100%;
    }
    .block-table .intro h2{
        font-size: 36px;
        color: #1e2122;
        margin: 0 0 15px;
        text-align: center;
    }

    .block-table .bottom-content .btn{
        margin-top: 20px !important;
    }

    .block-table .table-wrapper .table {
        transform: scale(0.4);
        top: 0;
        margin-top: -200px;
        margin-bottom: -160px;
    }
}