.price-list-banner {
    background-color: var(--bs-black);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
}

@media (max-width: 767px) {
    .price-list-banner {
        padding-top: 100px;
        min-height: 40vh;
    }
}

.price-list-banner h1 {
    color: var(--bs-light);
}

.price-list-section .table {
    font-size: 0.8rem;
}

.price-list-section .table tr {
    border-width: 5px 0;
    border-color: var(--bs-light);
}

.price-list-section .table th {
    background-color: #d3e2ef !important;
}

.price-list-section .table td {
    vertical-align: middle;
    background-color: #d3e8f5;
}

.price-list-section .table td:last-child {
    padding: 0 0;
}

.price-list-section .call-to-action {
    background-color: #b5d3ec;
    border-radius: 10px;
    padding: 10px 0;
    margin: 0 10px;
}

.price-list-section .call-to-action .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.775rem;
    border-radius: 0.2rem;
    background-color: #fff;
    font-weight: 900;
}

.price-list-section .cta-box i {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 900;
}

.price-list-section .card table th {
    background: #E9EEF3 !important;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .price-list-section .card table th {
        padding-left: 10px;
    }

    .price-list-section .table td:last-child {
        padding: 0 0 0 10px;
    }
}

.divider-line {
    width: 2px;
    background: #007bff;
    height: 90%;
    margin: auto;
}

/* =========================
   PRICE LIST LANDING PAGE
========================= */
.pricelist-landing-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
}

.pricelist-landing-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}

.pricelist-landing-hero .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .pricelist-landing-hero-bg-img {
        object-position: 65% center;
    }
}

@media (max-width: 575.98px) {
    .pricelist-landing-hero {
        min-height: unset;
        max-height: unset;
        background: black;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .pricelist-landing-hero picture {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 0;
    }

    .pricelist-landing-hero-bg-img {
        position: relative;
        inset: unset;
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .pricelist-landing-hero .container {
        position: relative;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        margin-top: -400px;
        margin-bottom: 30px;
        z-index: 1;
    }
}

@media (min-width: 1200px) {
    .pricelist-landing-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.price-list-tabs-wrapper {
    background: #fff;
}

.price-list-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.price-list-tabs .nav-link {
    color: #333;
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    background: transparent;
}

.price-list-tabs .nav-link:hover {
    color: #000;
}

.price-list-tabs .nav-link.active {
    border-bottom: 4px solid #0076ce;
    color: #000;
    background: transparent;
}

.price-list-tabs::-webkit-scrollbar {
    display: none;
}