.shipping p {
    margin: 0;
}

.shipping ul {
    list-style: disc;
    padding-left: 20px;
}

.shipping ul li {
    font-family: 'Urbanist';
    margin-bottom: 10px;
}

.shipping {
    max-width: 1222px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.breadcrumb {
    font-size: 12px;
}

.shipping .title {
    font-size: 30px;
    text-align: center;
    margin-top: 10px;
}

.shipping .block {
    margin-top: 36px;
}

.heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.heading.lowercase {
    text-transform: none;
}

.txt {
    font-family: 'Urbanist';
    font-size: 14px;
    color: #222;
    line-height: 1.6;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.shipping table {
    width: 100%;
    min-width: 630px;
    border-collapse: collapse;
}

.shipping th, td {
    border: 1px solid #ddd;
    padding: 15px 12px;
    text-align: left;
}

.shipping th {
    background-color: #f2f2f2;
    font-family: Urbanist;
    font-weight: 600;
}

.ps {
    font-family: Urbanist;
    font-size: 14px;
    margin-top: 16px;
}

.list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.list .heading {
    margin-top: 16px;
    font-size: 14px;
}

.list .txt {
    font-size: 12px;
}

@media (max-width: 768px) {
    .shipping {
        padding: 10px 10px 40px;
    }

    .title {
        margin-top: 24px;
        font-size: 18px;
    }

    .block {
        margin-top: 32px;
    }

    .heading {
        font-size: 16px;
    }

    .shipping th {
        font-size: 14px;
    }

    .txt,
    .list .txt {
        font-size: 13px;
    }

    .ps {
        font-size: 12px;
        margin-top: 12px;
    }

    .list {
        grid-template-columns: 1fr;
    }

    .list .heading {
        margin: 10px 0 8px;
    }

    .table-wrapper {
        overflow-x: scroll;
        padding-bottom: 5px;
    }

    .table-wrapper::-webkit-scrollbar {
        -webkit-appearance: none;
        height: 4px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background-color: #222;
        border-radius: 2px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background-color: #e8e8e8;
    }
}