.breadcrumb_img,
.breadcrumb_left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.breadcrumb_wrapper {
    border-bottom: 1px solid #ccc;
    background-color: whitesmoke;
    padding: 250px 0 150px 0;
}

.breadcrumb_img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.breadcrumb_left span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 1px;
}

.breadcrumb_left h1 {
    font-size: 56px;
    margin-top: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--white-color);
}

#tuckshop th {
    text-align: left;
    background-color: var(--main-color);
    color: white;
    text-align: center;
    /* font-family: "Gotham-Medium"; */
    display: table-cell;
    vertical-align: middle;
    height: 60px;
    padding: 5px 10px;
    font-size: 20px;
}

#tuckshop {
    border-collapse: collapse;
    width: 100%;
    background: #f0f0f0;
    font-size: 14px;
    line-height: 1.2;
}

#tuckshop tr {
    text-align: center;
    border-bottom: solid 6px #fff;
}

#tuckshop td {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    height: 80px;
    color: #231f20;
    font-size: 18px;
    padding: 5px 10px;
}

#tuckshop td:after {
    content: "";
    position: absolute;
    width: 1px;
    background: #c0c0c0;
    height: 40px;
    right: 0px;
    top: 20%;
}

#tuckshop td:last-child::after {
    content: none;
}

.farmer_table {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 700px;
}

.farmer_wrapper {
    border-top: 1px solid #ccc;
}



table {
    width: 100%;
    min-width: 500px;
}

.table_box {
    overflow-x: auto;
    /* white-space: nowrap; */
}



@media(max-width:992px) {
    #tuckshop td {
        font-size: 15px;
    }

    #tuckshop th {
        font-size: 16px;
    }

    .breadcrumb_img {
        margin-top: 1rem;
    }
}

@media(max-width:768px) {
    .breadcrumb_wrapper {
        margin-top: 0;
        padding: 150px 0 100px 0;
    }

    .breadcrumb_left h1 {
        font-size: 24px;
        margin-top: 7px;
    }
}