@media (min-width: 1700px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1640px;
    }
}

@media (max-width: 1200px) {
    .services-wrapper::after {
        display: none;
    }
}

@media (min-width: 1200px) {
    .checkout-row::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 53%;
        width: 1px;
        background-color: var(--border);
        transform: translateX(-53%);
    }
}

@media (max-width: 576px) {
 .breadcrumb{
        font-size: 12px;
    }
    .cta-section ul,
    .blog-tag {
        font-size: 12px;
    }
    .blog-tag{
        padding: 10px;
    }
    .cta-section .breadcrumb-item+.breadcrumb-item{
        padding-left: 5px;
    }
    .cta-section ul li:not(:first-child)::before{
     left:0;
    }
    .cta-section ul li{
        padding-left: 10px;
    }
    .cta-section ul li:first-child{
        padding-left: 0;
    }
    .stat-item p{
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .product-tabs {
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .product-tabs .nav-link {
        font-size: 1rem;
    }
    
}

@media (max-width: 991px) {
    .service-main-img {
        border-radius: 10px;
    }
}

@media (min-width: 992px) {
    .stat-item:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 11%;
        bottom: 11%;
        border-left: 1px dashed var(--border);
    }

    .stat-item:first-child {
        text-align: left;
    }

    .stat-item:last-child {
        text-align: right;
    }

    .full-bleed-right-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 41vw !important;
        height: 100% !important;
        max-width: none;
        object-fit: cover;
        max-height: 100%;
    }

    .cart-summary,
    .checkout-summary {
        position: sticky;
        top: 110px;
    }
}