
 :root {
            --primary-blue: #5d4ca0;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-900: #0f172a;
            --dsr-dark: #2c3e50; /* Deep blue/grey from image */
            --dsr-blue: #3498db;
        }
        button{
             background: linear-gradient(45deg, #0065F8, #00CAFF) !important;
             border:0 !Important;
             border-radius: 50px !important;
        }
        
         .download_btn{
             background: linear-gradient(45deg, #0065F8, #00CAFF) !important;
             border:0 !Important;
             /*border-radius: 50px !important;*/
           display: flex;
            justify-content: center;
            align-items: center;
        }

       body {
            font-family: 'Inter', sans-serif;
            background-color: var(--slate-50);
            color: var(--slate-900);
            overflow-x: hidden;
        }

        /* Hero Styling & Overlays */
        .hero-section {
            position: relative;
            min-height: 95vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 20px;
            BACKGROUND: #1a3c6b;
        }

        .hero-bg-img {
            position: absolute;
            inset: 0;
            z-index: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
            opacity: 0.08;
            mix-blend-mode: multiply;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(90deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(248, 250, 252, 0.4) 100%); */
            z-index: 1;
            /* background: linear-gradient(90deg, rgb(97 78 165) 0%, rgb(97 78 165 / 92%) 50%, #8050d1 100%); */
        }

        .tech-grid {
            position: absolute;
            inset: 0;
            opacity: 0.02;
            background-image: linear-gradient(var(--primary-blue) 1px, transparent 1px), linear-gradient(90deg, var(--primary-blue) 1px, transparent 1px);
            background-size: 80px 80px;
            z-index: 2;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes spin-reverse {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-spin-slow { animation: spin-slow 60s linear infinite; }
        .animate-spin-reverse { animation: spin-reverse 90s linear infinite; }
        .animate-marquee { display: flex; animation: marquee 40s linear infinite; white-space: nowrap; }

        /* Orbit Visualizer */
        .orbit-container {
            position: relative;
            width: 100%;
            height: 515px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .orbit-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px dashed #d4d4d4;
        }

        .hub-btn {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.25);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .hub-btn:hover { transform: scale(1.05); }

        .hub-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, var(--primary-blue), #6366f1);
            opacity: 0.9;
            background: linear-gradient(45deg, #0065f8, #00CAFF);
        }

        .brand-badge {
            position: absolute;
            width: 95px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid var(--slate-100);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .brand-badge img {
            max-width: 100%;
            max-height: 100%;
            /*filter: grayscale(100%);*/
            transition: filter 0.3s ease;
        }

        .brand-badge:hover img { filter: grayscale(0%); }

        /* Typography */
        .display-large {
              font-size: 85px;
            font-weight: 900;
            line-height: 95px;
            letter-spacing: -0.04em;
                color: #eeeeef;
        }
        
        .lead.text-secondary{
              color: #eeeeef !important;
        }
        .text-gradient {
            background: linear-gradient(90deg, #0065F8, #00CAFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Glass Cards */
        .glass-card {
                background: #fff;
            border: 1px solid #d0d0d0;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .glass-card p{
            color:#575656 !important;
        }
        .glass-card:hover {
            cursor:pointer;
             background: #fff;
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid #1a3c6b;

        }
        
        .head-section .container{
            border: 4px solid #314361;
            padding: 50px 30px;
            border-radius: 15px;
            overflow: hidden;
            background: #f7fdff;
        }

        /* Chat Widget */
        #chat-window {
            height: 400px;
            overflow-y: auto;
            padding: 20px;
            background: white;
        }

        .msg-assistant {
            background: var(--slate-100);
            padding: 12px 16px;
            border-radius: 16px 16px 16px 0;
            margin-bottom: 12px;
            max-width: 85%;
            font-size: 14px;
        }

        .msg-user {
            background: var(--primary-blue);
            color: white;
            padding: 12px 16px;
            border-radius: 16px 16px 0 16px;
            margin-bottom: 12px;
            margin-left: auto;
            max-width: 85%;
            font-size: 14px;
        }
        
        .nav-tabs .nav-link.active{
            background: #1a3c6b;
            color: #fff;
            background: linear-gradient(45deg, #0065F8, #00CAFF) !important;
            border: 0 !Important;
            border: 1px solid #fff;
            border-radius: 25px;
            padding: 8px 30px;
        }
        
        .nav-tabs .nav-link{
            background: #fff;
            /* color: #ffffff; */
            /* border: 1px solid #09397b !important; */
            border-radius: 25px;
            padding: 8px 30px;
            background: #fff !important;
            border: 0 !Important;
        }
        
        .step {margin: 10px; text-align: center; background: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        
        .step img{
            width: 100%;
            margin-bottom: 12px;
        }
        
        
        .breadcrumbs{
            padding: 80px 0;
            background: #1a3c6b;
        }
        
        .breadcrumbs h1{
            color: #fff;
            font-size: 50px;
            font-weight: 500;
        }
        
        .breadcrumbs p{
            color: #fff;
        }
        
        .price-section{
            padding: 20px 0 90px 0;
        }
            
        
        .head-section{
            padding: 80px 0;
        }
        
        
        .pricing-card {
            border: 2px solid #3498db;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            height: 100%;
        }

        .card-header {
            background: linear-gradient(45deg, #0065f8, #00CAFF);
            color: white;
            text-align: center;
            padding: 20px;
            border: none;
            border-radius: 0 !important;
        }

        .price-tag {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-item {
            padding: 12px 20px;
            border-bottom: 1px solid #f1f1f1;
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Alternating row colors like the image */
        .feature-item:nth-child(even) { background-color: #f8fbff; }
        
        
        

        .btn-contact {
            color: #fff;
            background: linear-gradient(45deg, #0065F8, #00CAFF) !important;
            border: 0 !Important;
        
            
            border-radius: 30px;
            padding: 10px 40px;
            margin: 20px auto;
            display: block;
            width: fit-content;
            text-decoration: none;
        }

        .btn-contact:hover {
            background-color: #2980b9;
            color: white;
        }

        .info-icon { color: #000; font-size: 0.8rem; }
        
        /*.comparison-containerss{*/
        /*    width: 1216px;*/
        /*    overflow-x: scroll;*/
        /*}*/
        
        
        
        .comparison-container {
            max-width: 1216px;
            margin: auto;
            border-radius: 12px;
            overflow-x: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: white;
            padding: 0;
        }

        /* Top Header Section */
        .comparison-header {
            background: linear-gradient(45deg, #0065f8, #00CAFF);
            color: white;
            padding: 25px 20px;
        }

        .main-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .product-col-title {
            font-size: 0.9rem;
            font-weight: 800;
            margin-bottom: 9px;
            text-transform: uppercase;
        }

        .product-desc {
                opacity: 0.9;
               font-size: 30px;
               font-weight: bold;
                text-align: center;
               padding: 0 0;
            
        }

        /* Table Section */
        .table { margin-bottom: 0; }
        
        .table td {
            padding: 20px;
            vertical-align: middle;
            border-bottom: 1px solid #eee;
            color: #444;
            font-weight: 500;
        }

        .feature-name { width: 30%; text-align: left; padding-left: 40px !important; }
        .check-col { width: 23.33%; text-align: center; }

        /* Icons */
        .bi-check-circle { color: var(--dsr-blue); font-size: 1.4rem; }
        .bi-x-circle { color: var(--dsr-blue); font-size: 1.4rem; opacity: 0.6; }

        /* Footer Section */
        .comparison-footer {
            background: linear-gradient(45deg, #0065f8, #00CAFF);
            padding: 30px 20px;
        }

        .btn-download, .btngswnld {
            color: #1a3c6b;
            background: #fff !important;
            font-weight: 700;
            border-radius: 50px;
            padding: 10px 25px;
            font-size: 0.8rem;
            text-transform: uppercase;
            border: none;
            transition: transform 0.2s;
        }

        .btn-download:hover {
            transform: scale(1.05);
            background: #f8f9fa;
        }
        

        /* Navbar Blur */
        .navbar-scrolled {
            background: rgba(255, 255, 255, 0.8) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }
        
        .ttm-bgcolor-white{
            background-color: transparent;
            padding: 30px 50px 50px 0;
            margin-top: 0px;
            /* box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08); */
        }
        
       
        
        .section-title {
                position: relative;
                margin-bottom: 26px;
            }
            
            .section-title .title-header {
    position: relative;
    margin-bottom: 17px;
}

.section-title h5{
          color: #0b0c0c;
}

.wrap-form label {
    width: 100%;
    margin: 0;
}

.wrap-form span.text-input {
    margin-bottom: 23px;
    display: block;
    position: relative;
}

textarea, input[type="text"]{
        vertical-align: middle;
        width: 100%;
        color: #8a91ac;
        padding: 15px 15px 16px;
        border-radius: 7px;
        font-weight: 400;
        background-color: #fff;
        text-transform: inherit;
        border: 1px solid rgba(0, 43, 92, 0.08);
        font-size: 14px;
        outline: none;
        line-height: inherit;
        letter-spacing: 0px;
}

.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor{
        border-color: #1a3c6b;
}

.ttm-btn-style-fill.ttm-btn-color-skincolor{
        color: #fff;
}

.ttm-btn-style-fill.ttm-btn-color-skincolor{
    background-color: #1a3c6b;
    padding: 17px 38px !important;
    border-radius: 50px !important;
}

.ttm-btn.ttm-btn-shape-rounded {
    border-radius: 3px;
}

.ttm-btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: normal;
    padding: 11px 32px 11px 31px;
    background: transparent;
    border: 1px solid #eaeff5;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    text-transform: capitalize;
    z-index: 1;
    transition: all 0.5s ease 0s;
}

.ttm-btn.ttm-btn-size-md {
    font-size: 14px;
    padding: 11px 31px 11px 31px;
}
        
         .hero-section:before{
            content:'';
            /*background:url(../images/b-shape.svg);*/
            position: absolute;
            right: 0;
            width: 100%;
            content: "";
            top: -50px;
            height: 203%;
            z-index: 2;
            background-repeat: no-repeat;
            background-position: top right;
            
        }
        .orbit-container{
            z-index:9;
        }
        
        .text-primary {
        --bs-text-opacity: 1;
        color: #0065f8 !important;
    }
            
            .bg-primary {
        --bs-bg-opacity: 1;
        background-color: #0065f8 !important;
    }
        
        .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1a3c6b;
    --bs-btn-border-color: #1a3c6b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1a3c6b;
    --bs-btn-hover-border-color: #1a3c6b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1a3c6b;
    --bs-btn-active-border-color: #1a3c6b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1a3c6b;
    --bs-btn-disabled-border-color: #1a3c6b;
}
      
     
     .navbar-collapse ul li a{
         color:#252424 !important;
     }
      
    #download .cmn_row{
        padding: 35px 10px !important;
        align-items: center;
        cursor: pointer;
        background: #f9f9f9;
    }
      
     .cmn_row .detail-box{
           align-items: center;
     }
    .cmn_row .line-2 p{
         margin-bottom:0 !important;
     }
     
     #driverSearch:focus{
         box-shadow:inherit !important;
     }
    
    .step h6{
        
    }
     .step h6 b{
        background: #1a3c6b;
        padding: 6px 19px;
        color: #fff;
        margin-bottom: 4px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 400;
    }
    .contact_us{
        background:url(../images/pattern-4.png);
        background-position: center center;
        background-repeat: no-repeat;
    }
    footer .bg-primary {
        /*--bs-bg-opacity: 1;*/
        /*background-color: rgb(255 255 255) !important;*/
    }
    footer{
           background: #193a69;
    }
    footer .links  ul{
        display: flex;
        gap: 75px;
        /* list-style: none; */
        margin-bottom: 52px;
    }
    footer .links  ul li{
        
    }
     footer .links  ul li a{
    color: #fff;
    font-size: 18px;
    list-style: none;
    }
      footer p{
          color:#fff !important;
      }
      footer{
  /*        background-repeat: repeat-x;*/
  /*background-image: url("../images/section-hero-f7f9ff.png");*/
  /*background-position: center bottom;*/
      }
      
      footer .fs-4.fw-black{
          font-size:40px !important;
      }
      .accordion-header button{
          background:inherit !important;
      }
      
      .why_choose_us .box{
        margin-top: -50px;
      }
      .ft_merge{
              position: relative;
            z-index: 1;
            bottom: -50px;
            background: #fff;
            margin-top: -240px;
      }
      
      .curved-bottom-section{
              background: #fff;
            margin-top: -85px;
      }
      
      #download{
          margin-top:-50px;
      }
      
      .common_issue{
          position:relative;
      }
      
      .dwn_why{
              padding: 90px 0;
      }
      
     .pr3-right-shape {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 300px;
        -webkit-animation: 6s pr3_object_animation linear infinite;
        animation: 6s pr3_object_animation linear infinite;
    }
    
    .pr3-right-shapes{
        position: absolute;
        bottom: 30px;
        right: 0;
        width: 300px;
        -webkit-animation: 6s pr3_object_animation linear infinite;
        animation: 6s pr3_object_animation linear infinite;
    }
    
    .pr3-right-shapes img{
            height: 280px;
    }
    
    @keyframes pr3_object_animation {
    	0% {
    		-webkit-transform: translateY(0);
    		transform: translateY(0);
    	}
    	50% {
    		-webkit-transform: translateY(-15px);
    		transform: translateY(-15px);
    	}
    	100% { 
    		-webkit-transform: translateY(0);
    		transform: translateY(0);
    	}
    }

 /*.xis-dia-side-shape1 {*/
 /*   right: 0;*/
 /*   z-index: -1;*/
 /*   top: -120px;*/
/*}*/

.why_choose_us{
        background: url(../images/pattern-4.png);
    background-repeat: no-repeat;
    background-position: center;
} 
.eula .box,.privacy-policy .box{
    padding-bottom: 15px;
    padding-top: 15px;
}
.privacy-policy .box ul li{
    padding-bottom:8px;
}
.pr3-left-shape {
        position: absolute;
        top: 100px;
        left: 30px;
        width: 120px;
        display: inline-block;
        -webkit-animation: 3s pr3_object_animation linear infinite;
        animation: 3s pr3_object_animation linear infinite;
    }
   .pr3-about-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* -webkit-box-align: center; */
        -ms-flex-align: center;
        /* align-items: center; */
        list-style:none;
        margin-bottom: 20px;
    }
     .pr3-about-list .pr3-icon-wrapper {
        margin-right: 20px;
    }
    
     .pr3-about-list .pr3-icon-wrapper i {
        width: 60px;
        height: 60px;
        background-image: -webkit-linear-gradient(324deg, #007ff9 0%, #00bcfe8a 100%, #0080fa 100%);
        background-image: -o-linear-gradient(324deg, #007ff9 0%, #00bcfe8a 100%, #0080fa 100%);
       background-image: linear-gradient(324deg, #007ff9 0%, #00bcfe8a 100%, #0080fa 100%);
        font-size: 36px;
        border-radius: 10px;
        color: #ffffff;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .common_issue ul{
        padding-left:0 !important;
    }
    
    .pr-mark-cta-section{
        background: #17355e;
         padding: 50px;
    }
    .pr-mark-btn a{
        font-size: 20px;
        text-decoration: none;
        /* color: #008ffb !important; */
    }
     .pr-mark-btn a i{
             margin-right: 10px;
             position: relative;
             top: 1px;
             font-size: 35px;
             color: #008ffb;
     }
     .pr-mark-section-title .pr-mark-section-title-tag{
         position:relative;
         color: #0097fc !important;
         font-size: 20px;
         font-weight: 600;
     }
     .pr-mark-section-title .pr-mark-section-title-tag:before {
        top: 18px;
        height: 3px;
        width: 55px;
        content: "";
        position: absolute;
        background-color: #0094fb;
        right: -56px;
    }
    .accordion-button:focus{
        box-shadow:inherit !important;
    }
    #mainNav{
        position:relative!important;
    }
    .ul_ele12{
        display:none;
    }
    
    @media only screen and (min-width:1200px) and (max-width:1600px){
        .display-large {
            font-size: 50px !important;
            line-height: 60px !important;
        }
        p.lead{
            font-size:16px;
            margin-bottom: 35px !important;
        }
        .animate-spin-slow{
            width: 250px !important; 
            height: 250px!important; 
        }
        .animate-spin-reverse{
            width: 400px!important; 
            height: 400px!important; 
        }
        .hub-btn {
            width: 150px !important;
            height: 150px !important;
        }
        .hub-btn .sm-txt1{
            font-size: 12px;

        }
         .hub-btn .sm-txt2{
            font-size: 12px;
        }
        .brand-badge {
            width: 72px !important;
            height: 72px !important;
        }
        .badge1{
            top: 27% !important;
            left: 22% !important;
        }
        .badge2{
            top: 27% !important;
            right: 22% !important;
        }
        .badge3{
            bottom: 25% !important;
            left: 24% !important;
        }
        .badge4{
            bottom: 25% !important;
            right: 22% !important;
        }
        .hero-section {
            padding: 0px 0 !important;
        }
        .onedsetup{
            bottom: 50px !important;
            right: 21px !important;
        }
        .f-14{
            font-size:14px !important;
        }
        
    }
    
    @media only screen and (min-width:992px){
        .hero-section{
            padding: 80px 0;
            min-height: 90vHimportant;
            min-height: 24vh !important;
        }
        .hardware_info .img_box{
            position: relative;
            bottom: 6px;
            right: -20px;
            width: 115%;
            margin-bottom: -150px;
        }
        .faq_img{
            position: relative;
            top: -150px;
            width: 110%;
        }
        .faqs{
            margin-bottom:-80px; 
        }
        .img__box{
            padding-right:40px;
            
        }
         .img__box img{
             border-radius:10px;
            overflow:hidden;
         }
         .detail-box .printer-details{
             width:275px;
         }
    }
     @media only screen and (max-width:767px){
        .text-secondary {
            --bs-text-opacity: 1;
            color: rgb(33 34 35) !important;
        }
        #download .cmn_row{
            margin:15px 5px !important;
        }
          .ul_ele12{
            display:block !important;
        }
        .why_choose_img{
            display:none;
        }
        .ul_ele12 li{
            margin-bottom:15px;
        }
         .img__box img{
            border-radius:10px;
            overflow:hidden;
        }
        .display-large {
            font-size: 42px;
            font-weight: 900;
            line-height: 53px;
            letter-spacing: -0.04em;
            color: #eeeeef;
            padding-top: 45px;
        }
        footer .links ul li a {
            font-size: 16px;
        }
        .navbar-brand img{
            width:240px;
        }
        footer .links ul {
            display: flex;
            gap: 25px;
            margin-bottom: 27px;
            flex-wrap: wrap;
            justify-content: center;
        }
        footer{
            padding-bottom:0 !important;
        }
        .pr3-right-shape{
            display:none;
        }
        
        .pr3-right-shapes{
             display:none;
        }
        .ft_merge {
            margin-top: -90px;
        }
        .navbar-collapse ul li{
            padding: 8px 20px;
            border-top: 1px solid #d6cfcf;
        }
        footer{
            padding-top: 35px;
            margin-top: 15px;
        }
        footer .container{
            padding-bottom:0 !important;
        }
        footer h6{
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 30px !important;
        }
        #process .container{
            padding-bottom:0 !important;
        }
        p.lead {
            font-size:16px;
        }
        .p-c-name{
            display:none;
        }
        .printer-details h5{
            margin-left:0 !important;
        }
         .detail-box .printer-image img{
            width:120px !important;
        }
        .faq_img{
            margin-bottom:60px;
        }
        .ttm-bgcolor-white{
            padding:20px;
        }
        .pr-mark-cta-section {
            padding: 20px;
            text-align: center;
        }
        #features{
            padding-top:10px !important;
             padding-bottom:10px !important;
        }
        #download {
            margin-top: 0px !important;
            padding-bottom: 0 !important;
        }
        .hero-section {
            min-height: 100%;
        }
        .glass-card{
            text-align:center;
        }
        .printer-image{
            /*width:70px;*/
        }
        #download button{
            margin-top:20px !important;
            width: 135px !important;
            height: 36px !important;
            font-size: 14px;

        }
        #process{
            padding-top:0 !important;
        }
        .hardware_info{
            padding-top:0 !important;
            padding-bottom: 0 !important;
        }
        .common_issue {
            padding-bottom:10px !important;
        }
        .common_issue .inner_box img{
            margin-bottom:65px !important;
        }
        .sm-pt-5{
            padding-top:40px !important;
        }
        .pr-mark-cta-content{
            display:block !important;
        }
        .pr-mark-btn a,.pr-mark-cta-section h5 {
            font-size: 16px; 
        }
        footer .fs-4.fw-black {
            font-size: 28px !important;
        }
     }
     
     .padd-right{
         padding-right: 58px !important;
     }
     
     
      @media (max-width:576px){
          
         .comparison-container {
            overflow-x: scroll;
        }
          
        
        .comparison-header {
            
            width: 700px;
        }

        .table {
            margin-bottom: 0;
            width: 700px;
        }
        
         .comparison-footer {
            width: 700px;
        }
        
          
        .main-title {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
            text-align: left;
        }
        
        .product-col-title {
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 9px;
            text-transform: uppercase;
        }
        
        .btn-download {
            font-size: 13px;
            
        }
        
        .product-desc {
            opacity: 0.9;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            padding: 0 0;
        }

  
         .padd-right{
             padding-right: 58px !important;
         }
      }
      