.tax-online {
    background: #D6F1FF;
    padding-block: 60px 120px;
}

.head-title {
    text-align: center;
}

    .head-title h2 {
        font-size: 25px;
        font-weight: 700;
        color: #0057A8;
    }

    .head-title p {
        font-size: 20px;
        color: #3C3D3E;
    }

.box-taxs {
    display: flex;
    gap: 15px;
}

.tax {
    background: #ffffff;
    padding-block: 60px 15px;
    padding-inline: 35px;
    border-radius: 24px;
    width: calc(25% - 15px);
    text-align: center;
}

    .tax .icon {
        height: 60px;
    }

    .tax .text {
        margin-top: 20px;
    }

    .tax p.title {
        font-size: 17px;
        font-weight: 500;
        color: #242424;
        margin-bottom: 0;
    }

    .tax p.desc {
        font-size: 15px;
        color: #242424;
        margin-bottom: 0;
    }

        .tax p.desc span {
            white-space: nowrap;
        }

.application-details {
    padding-top: 70px;
    padding-bottom: 60px;
}

.details-container {
    padding-inline: 3rem;
}

    .details-container .header-details {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .details-container .header-title {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

        .details-container .header-title h3 {
            font-size: 24px;
            font-weight: bold;
            color: #0057A8;
        }

    .details-container .tabs {
        border-radius: 30px;
        border: 1px solid #70707025;
        overflow: auto;
    }

    .details-container .tabs-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 5px;
    }

    .details-container .tab {
        font-size: 14px;
        font-weight: 500;
        color: #0057A8;
        text-align: center;
        padding: 15px 20px;
        min-width: 170px;
        border-radius: 30px;
        cursor: pointer;
        transition: .3s;
    }

        .details-container .tab.active {
            background-color: #D6F1FF;
        }

        .details-container .tab:hover {
            background-color: #D6F1FF;
        }

    .details-container .content {
        margin-top: 30px;
    }

        .details-container .content h4 {
            font-size: 17px;
            font-weight: 500;
            color: #3C3D3E;
        }

        .details-container .content ul {
            padding-left: 20px;
        }

            .details-container .content ul li {
                margin-bottom: 5px;
            }

                .details-container .content ul li a {
                    color: #0057A8;
                }

                    .details-container .content ul li a:hover {
                        text-decoration: underline !important;
                    }

            .details-container .content ul li,
            .details-container .content ol li,
            .details-container .content p {
                font-size: 15px;
                color: #3C3D3E;
            }

    .details-container .detail-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

.detail-tab-4 {
    display: flex;
    gap: 25px;
}

    .detail-tab-4 img {
        max-width: 108px;
        max-height: 108px;
    }

.details-container .content .formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #3C3D3E;
    margin-block: 30px;
}

    .details-container .content .formula .box-text {
        border-radius: 20px;
        min-width: 156px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        .details-container .content .formula .box-text:nth-child(1) {
            background: #0057A8;
            color: #ffffff;
        }

        .details-container .content .formula .box-text:nth-child(3) {
            background: #AEE8FC;
        }

        .details-container .content .formula .box-text:nth-child(5) {
            background: #FFF395;
        }

        .details-container .content .formula .box-text:nth-child(7) {
            background: #69E0C2;
        }

.details-container .content table {
    border-collapse: collapse;
    border: 0;
    width: 100%;
}

.details-container thead tr th {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 18px;
    width: 50%;
}

    .details-container thead tr th:nth-child(odd) {
        background-color: #0057A8;
        border-top-left-radius: 30px;
        border-right: 3px solid #ffffff;
    }

    .details-container thead tr th:nth-child(even) {
        background-color: #AAAAAA;
        border-top-right-radius: 30px;
        border-right: 3px solid #ffffff;
    }

.details-container tbody tr td {
    padding: 15px;
    font-size: 15px;
    color: #3C3D3E;
    background-color: #F2F2F5;
    text-align: center;
}

    .details-container tbody tr td.border-r {
        border-right: 3px solid #ffffff;
    }

    .details-container tbody tr td.border-bt {
        border-bottom: 3px solid #ffffff;
    }

.t-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 1rem 0 2rem;
}

.t-card {
    border-radius: 1.5rem 1.5rem;
    border: 2px solid #DDD;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

    .t-card.card-1 {
        border: 2px solid #AEE8FC;
    }

    .t-card.card-2 {
        border: 2px solid #FFF395;
    }

    .t-card.card-3 {
        border: 2px solid #69E0C2;
    }

    .t-card .card-title {
        margin: 0;
        text-align: center;
        background: #DDD;
        font-size: 20px;
        font-weight: 500;
        padding: 15px;
    }

    .t-card.card-1 .card-title {
        background: #AEE8FC
    }

    .t-card.card-2 .card-title {
        background: #FFF395
    }

    .t-card.card-3 .card-title {
        background: #69E0C2
    }

    .t-card .card-body {
        padding: 20px 20px 10px 20px;
        text-align: center;
    }

        .t-card .card-body p {
            font-size: 15px;
            color: #3C3D3E;
        }

@media (max-width: 1199px) {
    .details-container .tab {
        min-width: max-content;
        padding-inline: 20px;
    }

    .details-container.tab-header {
        padding-inline: 20px;
    }

    .details-container {
        padding-inline: 20px;
    }
}

@media (max-width: 991px) {
    .tax-online {
        padding-block: 30px;
    }

    .box-taxs {
        flex-wrap: wrap;
    }

    .tax {
        width: calc(50% - 15px);
        padding-top: 45px;
    }

        .tax .text {
            margin-top: 18px;
        }

    .container-tab-header {
        padding-right: 10px;
        margin-right: 0;
        width: 100%;
        max-width: unset;
    }

    .details-container.tab-header {
        display: flex;
        overflow: auto;
    }

        .details-container.tab-header.head-title {
            display: unset;
        }

    .table-protection {
        min-width: 978px;
    }

    .details-container .content .formula .box-text {
        min-width: unset;
        height: 50px;
        padding-inline: 10px;
    }

    .details-container .content .formula {
        font-size: 16px;
    }

    .t-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .details-container .content .formula .box-text {
        min-width: unset;
        height: 38px;
        padding-inline: 10px;
    }

    .details-container .content .formula {
        font-size: 11px;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .head-title h2 {
        font-size: 20px;
    }

    .head-title p {
        font-size: 16px;
    }

    .box-taxs {
        flex-wrap: wrap;
    }

    .tax {
        width: 100%;
    }

        .tax p.desc span {
            white-space: normal;
        }

    .details-container .header-details h3 {
        font-size: 19px;
    }
}
