.estimation-error {
    width: 90%;
    margin: 20px auto 0;
    color: #d9534f;
    font-family: Inter, sans-serif;
    font-size: 14px;
    text-align: center;
}

.tab_sections {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    width: 90%;
    min-width: 1100px;
    margin-top: 60px;
    padding-bottom: 50px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    line-height: 20px;
}

.tab_subcontainer {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 50%;
    display: flex;
}

.tab {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #f4f4f4;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    height: auto;
    padding: 38px;
    display: flex;
}

.tab_title {
    color: #0f1340;
    margin-bottom: 14px;
    font-family: Inter, sans-serif;
    font-size: 19px;
    font-weight: 500;
}

.tab_description {
    color: #656781;
    width: 100%;
    font-family: Inter, sans-serif;
    font-size: 14px;
}

.tab_list {
    color: #656781;
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-flow: column;
    width: 100%;
    padding-left: 20px;
    font-family: Inter, sans-serif;
    display: flex;
}

.tab ul {
    margin-top: 0;
    margin-bottom: 10px;
}

.tab_sections p {
    margin-top: 0;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .tab_subcontainer {
        grid-column-gap: 14px;
        grid-row-gap: 14px;
        width: 100%;
    }

    .tab {
        height: auto;
    }

    .tab_sections {
        grid-column-gap: 14px;
        grid-row-gap: 14px;
        flex-flow: column;
        width: 100%;
        min-width: auto;
        margin-top: 30px;
    }

    .tab_image {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .tab_sections {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .tab_subcontainer {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        flex-flow: row;
    }

    .tab {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .tab_image {
        width: 70%;
        max-width: 70%;
    }
}

@media (max-width: 540px) {
    .tab_sections {
        width: 100%;
    }

    .tab_subcontainer {
        flex-direction: column;
        width: 100%;
    }

    .tab {
        width: 100%;
    }

    .tab_image {
        width: 60%;
    }
}