@font-face {
    font-family: "ECR";
    src: url("../fonts/EuclidCircularB-Regular.woff2") format("woff2"),
      url("../fonts/EuclidCircularB-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "ECSB";
    src: url("../fonts/EuclidCircularB-Regular.woff2") format("woff2"),
      url("../fonts/EuclidCircularB-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "ECB";
    src: url("../fonts/EuclidCircularB-Bold.woff2") format("woff2"),
      url("../fonts/EuclidCircularB-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  body {
    overflow-x: hidden;
  }

  h1 {
    color: #1f2b59;
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 20px;
  }
  h2 {
    color: #1f2b59;
    font-size: 37px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  h3 {
    color: #1f2b59;
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  h4 {
    color: #1f2b59;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  p{
    font-size: 16px;
    line-height: 27px;
  }
  
  p,
  span,
  a,
  nav,
  ul,
  li,
  ol,
  .login,
  select,
  option,
  button,
  .search-form,
  small,
  strong {
    font-family: "ECR";
    font-weight: 500;
  }
  
  h1,
  h2,
  h3,
  .logo {
    font-family: "ECB";
    font-weight: 700;
  }
  
  h4,
  h5,
  h6 {
    font-family: "ECSB";
    font-weight: 600;
  }
  
  
  .button {
    padding: 12px 30px !important;
    text-align: center;
    justify-content: center;
    border-radius: 4px;
    background-image: linear-gradient(to right, #3e47dd, #262a98);
    color: #fff !important;
    text-decoration: unset;
  }
  .button:hover {
    background: #3e47dd !important;
    color: #fff !important;
    border-radius: 4px !important;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  @media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
  }
  
  header {
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0px;
    box-shadow: 0px 3px 6px 0px #3e47dd14;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: .5rem;
  }
  
  .ch-1 {
    display: flex;
    gap: 20px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #3e47dd;
    font-style: italic;
  }
  
  nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
  }
  
  nav a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    padding: 8px;
  }
  
  .menu {
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  
  .right {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .dropdown,
  .language,
  .login {
    position: relative;
  }
  
  .dropdown-content,
  .language-content,
  .login-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #eee;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0px 0px 4px 0px #3e47dd2b;
    border-radius: 8px;
    min-width: 130px;
    width: 100%;
  }
  
  .dropdown-content a:hover,
  .language-content a:hover,
  .login-content a:hover {
    background: #3e47dd12;
    border-radius: 8px;
  }
  
  .language-content,
  .login-content {
    right: 0;
    left: auto;
  }
  
  .dropdown:hover .dropdown-content,
  .language:hover .language-content,
  .login:hover .login-content {
    display: block;
  }
  
  .dropdown-content a,
  .language-content a,
  .login-content a {
    padding: 10px;
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .icon,
  .language {
    line-height: 0px;
  }
  .login a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .login-content img {
    width: 20px;
  }
  .right .login-content {
    min-width: 280px;
  }
  .icons img,
  .icons .icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  a.log-in.button {
    margin: 20px 0px;
  }
  p.lp {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }
  .login .lp a {
    padding: 0px;
  }
  .login .lp a:hover {
    background: transparent;
  }
  
  /* Hamburger */
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }
    
    .footer {
        background: linear-gradient(to right, #3e47dd, #262a98);
        padding: 4rem 1rem 2rem 1rem;
        border: 1px solid #b3c3de;
        border-width: 1px 0px 0px;
        position: relative;
        overflow: hidden;
    }
    
    #dottedPattern{
        position: absolute;
        filter: brightness(0) invert(1);
        opacity: .1;
        transform: scaleY(-1) translateY(0);
    }
    
    #tireTrack{
        position: absolute;
        filter: brightness(0) invert(1);
        opacity: .05;
        transform: translate(-100px, 400px);
    }
    
    @media (min-width: 768px){
        #tireTrack{
            transform: translate(0, 130px);
        }   
        #dottedPattern{
            left: 0;
            top: 0;
            width: 100%;
            transform: scaleY(-1) translate(-600px,400px);
        }
    }
  
    .links-container {
        display: grid;
        gap: 1rem;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr); 
    }
    
    @media (min-width: 768px){
        .links-container {
            grid-template-columns: repeat(4, 1fr); 
        }
    }
    
    .footer-wrapper{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 100;
    }
      
    .footer-part-header{
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 1rem;
        color: #262a98;
        background: white;
        width: auto;
        margin-right: auto;
        display: inline-block;
        border-top-right-radius: 10rem;
        border-bottom-right-radius: 10rem;
        padding: .4rem 1rem;
        padding-right: 5rem;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
  
    .filter-link-card .link-head{
        font-size: 20px;
        font-weight: 900;
        margin-bottom: .6rem;
        color: white;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
  
    .footer ul{
      list-style: none;
    }
  
    .footer ul li:not(:last-child){
      margin-bottom: .3rem;
    }
  
    .footer ul li a {
        display: inline-block;
        margin-bottom: 6px;
        color: rgba(255,255,255,.6);
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        text-decoration: none !important;
        transition: .2s ease-in-out;
        font-size: 16px;
        padding-bottom: 10px;
    }
  
    .footer ul li a:hover {
        text-decoration: underline;
        color: var(--accent-color) !important;
    }
    
    .footer-brand-section{
        display: flex;
        padding: .6rem 0;
        position: relative;
        z-index: 100;
    }
    
    .footer-brand-section .brand-info{
        display: flex;
        flex-direction: column;
    }
    
    .footer-brand-section .brand-info .logo{
        margin: 0;
        max-width: 20rem;
        color: white;
    }
    
    .footer-brand-section .brand-info .trademark{
        color: rgba(255,255,255,.6);
    }
    
    .footer-brand-section .brand-info .social-icons{
        margin-top: .8rem;
        padding: 0;
    }
    
    .footer-brand-section .brand-info .social-icons img{
        filter: brightness(0) invert(1);
    }
  
    .footer-bottom {
        border-top: 1px solid #e5e7eb;
        margin-top: 40px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
  
    .footer-bottom p {
        color: #4b5563;
        margin: 0;
    }
  
    .footer-bottom .payments img {
        margin-right: 10px;
        height: 28px;
    }
    
    section.el-hero {
        padding: 75px 0px;
        background-image: linear-gradient(to bottom, #66d9ff, #ccf8ff);
    }

    .cl1 {
    display: flex;
    gap: 30px;
    flex-flow: wrap;
}
.rt, .lft {
    flex: 1;
}
.cl1 a.button {
    display: inline-block;
    text-decoration: unset;
    margin-top: 10px;
}
.bl1 {
    flex: 1;
}
.blw {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    padding-top: 50px;
}
.bl1 img {
    background: #6be3ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    width: 60px;
}
.poly {
    clip-path: polygon(0 -1%, 100% -1%, 0 100%);
    background: #ccf8ff;
    height: 4rem;
}
.tab-section-main {
    padding: 40px;
  }
  
  .tab-section-main .tabs {
    display: flex;
    border-bottom: 2px solid #dcdcdc;
    margin-bottom: 50px;
    justify-content: space-between;
  }
  
  .tab-section-main .tab {
    padding: 18px 80px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    color: #666;
    border-bottom: 3px solid transparent;
  }
  
  .tab-section-main .tab.active {
    color: #3f38f3;
    border-color: #3f38f3;
  }
  
  .tab-section-main .tab-content {
    display: none;
  }
  
  .tab-section-main .tab-content.active {
    display: block;
  }
  
  .tab-section-main .tab-inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }
  
  .tab-section-main .tab-image img {
    max-width: 80%;
    height: auto;
    margin: auto;
  }
  .tab-section-main .tab-text, .tab-section-main .tab-image {
    flex: 1;
}
.tab-section-main h3 {
    text-align: center;
    margin-bottom: 60px;
}
  
  .tab-section-main .tab-text h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .tab-section-main .tab-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .tab-section-main .tab-text h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .tab-section-main .tab-text ul {
    list-style: none;
    padding-left: 0;
  }
  
  .tab-section-main .tab-text li {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .el-slider {
    padding: 80px 20px;
    background: #f5f8ff;
    text-align: center;
  }
  .el-slider .in {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .el-slider-wrapper.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-bottom: 35px;
}
  
  .el-slider-heading {
    margin-bottom: 30px;
  }
  
  .el-slider-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
  }
  
  .el-slide {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .el-slide img {
    width: 120px;
    object-fit: contain;
  }
  
  .el-slide-text {
    text-align: left;
  }
  
  .el-slide-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .el-slide-text a {
    color: #3f38f3;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
  }
  
  .custom-nav {
    color: #3f38f3;
  }

  .cm-table {
    padding: 40px 20px;
    background-color: #f5f8ff;
  }
  
  .cm-table-wrapper {
    overflow-x: auto;
  }
  
  .cm-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1000px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .cm-comparison-table th,
  .cm-comparison-table td {
    border: 1px solid #e3e6ee;
    vertical-align: top;
    text-align: left;
    padding: 20px;
  }
  
  .cm-comparison-table thead th {
    background-color: #f9fbff;
    font-size: 14px;
    color: #2b2b2b;
    text-align: left;
  }
  .cm-comparison-table h4 {
    font-size: 20px;
    margin: 0px;
  }
  
  .cm-comparison-table thead th span {
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    display: block;
  }
  
  .cm-comparison-table .title-cell {
    background-color: #f9fbff;
    font-weight: bold;
    width: 180px;
    white-space: nowrap;
  }
  
  .cm-comparison-table ul {
    padding-left: 18px;
    margin: 0;
  }
  
  .cm-comparison-table ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
  }
  
  .icon {
    display: inline-block;
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .icon.green {
    color: #28b463;
  }
  
  .icon.red {
    color: #e74c3c;
  }
  
  .cost-cell {
    background-color: #f9fbff;
    text-align: left;
  }
  
  .info-icon {
    font-size: 16px;
    background: #e3e6ee;
    border-radius: 50%;
    padding: 4px 8px;
    color: #555;
  }
  
  .container {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .imp-par {
    padding: 60px 20px;
    background-color: #f5f8ff;
    font-family: 'Arial', sans-serif;
  }
  
  .imp-par-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.05));
  }
  
  .imp-par-image {
    flex: 1 1 50%;
    height: 300px; 
    background: white; 
    padding: 1rem;
  }
  
  .imp-par-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
  
  .imp-par-content {
    flex: 1 1 50%;
    display:flex;
    flex-direction: column;
    justify-content:center;
    height: 300px; 
    background:linear-gradient(to right, #3e47dd, #262a98) !important;
    padding: 1rem .5rem;
  }
  
  .imp-par-content h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 15px;
  }
  
  .imp-par-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
  }
    
    .banners{
        background: #f5f8ff !important;
    }
    
    .couple-banner{
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .couple-banner:not(:last-child){
        margin-bottom: 2rem;
    }

    .couple-banner > div{
        flex: 1;
        padding: 2rem;
    }
    
    .couple-banner .banner-img{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .couple-banner .banner-img img{
        width: 90%;
        height: auto;
        object-fit: scale-down;
    }
    
    .couple-banner .banner-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .couple-banner .banner-clip-front-1{
        clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
    }
    
    .couple-banner .banner-clip-front-2{
        clip-path: polygon(50% 10%, 100% 0, 100% 100%, 0 100%, 0 0);
    }
    
    .couple-banner .banner-clip-back-1{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
    }
    
    .couple-banner .banner-clip-back-2{
        clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
    }
    
    .banner-bg-primary{
        background: linear-gradient(to right, #3e47dd, #262a98) !important;
    }
    
    .banner-bg-secondary{
        background: #fff !important;
        color: #000 !important;
    }
    
    .banner-heading{
        font-weight: bold;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .banner-list{
        list-style: none;
    }
    
    .banner-list .banner-list-item:not(:last-child){
        margin-bottom: .8rem;
    }
    
    .couple-banner .banner-content .feature-icon{
        color: white !important;
    }
    
    .banner-bg-primary .banner-heading, .banner-bg-primary .banner-list{
        color: #fff !important; 
    }
    
    .banner-bg-secondary .banner-heading, .banner-bg-secondary .banner-list{
        color: #000 !important; 
    }
    
    @media (min-width: 767px) {
        .couple-banner{
            flex-direction: row;
        }
        
        .couple-banner:not(:last-child){
            margin-bottom: 4rem;
        }
        
        .couple-banner > div{
            padding: 1rem;
        }
        
        .couple-banner .banner-clip-front-1{
            clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
        }
        
        .couple-banner .banner-clip-front-2{
            clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0 0);
        }
        
        .couple-banner .banner-clip-back-1{
            clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
        }
        
        .couple-banner .banner-clip-back-2{
            clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
        }
        
        .banner-heading{
            margin-bottom: 1.4rem;
        }
        
        .banner-list .banner-list-item:not(:last-child){
            margin-bottom: 1rem;
        }
    }
  
  
  .accordion {
    border-top: 1px solid #ddd;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ddd;
  }
  
  .accordion-header {
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
    color: #1a1a1a;
    cursor: pointer;
    position: relative;
  }
  
  .accordion-header::after {
    content: "▾";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
  }
  
  .accordion-body {
    display: none;
    font-size: 15px;
    padding-bottom: 15px;
    color: #333;
    font-family: 'ECR';
  }
  
  .accordion-item.active .accordion-body {
    display: block;
  }
  
  .pr2 .imp-par-inner {
    flex-direction: row-reverse;
}

.car-sel {
    background: #f5f8ff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .car-selection-box h3 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .car-selection-box .dropdown {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    padding: 10px 15px;
  }
  
  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .car-info {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .car-info img {
    width: 50px;
    border-radius: 6px;
  }
  
  .car-details strong {
    display: block;
    font-size: 14px;
  }
  
  .car-details span {
    font-size: 13px;
    color: #666;
  }
  
  .arrow {
    font-size: 18px;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
  }
  
  .dropdown-menu li {
    padding: 8px 6px;
    cursor: pointer;
  }
  
  .dropdown-menu li:hover {
    background: #f5f5f5;
  }
  
  .car-options-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .left-options,
  .right-options {
    flex: 1 1 400px;
  }
  .bx h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}
h4.cars {
    font-size: 20px;
    margin-top: 0px;
}
  
  .box-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .option {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .option.active {
    background: #f1edff;
    border-color: #3f38f3;
    color: #3f38f3;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(63, 56, 243, 0.2);
  }
  
  .icon {
    margin-right: 6px;
  }
  
  .slider {
    margin-top: 10px;
  }
  
  .slider input[type="range"] {
    width: 100%;
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
    color: #666;
  }
  
  .info {
    font-size: 13px;
    background: #e0e5f3;
    border-radius: 50%;
    padding: 0 6px;
    margin-left: 5px;
  }
  
  .right-options .box {
    background: #fff;
    padding: 20px 20px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .right-options .box p {
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  .right-options .box span {
    font-size: 12px;
    color: #666;
  }
  .bx {
    background: #e3ecff;
    padding: 60px;
    border-radius: 6px;
    max-width: 1030px;
    margin: 40px auto 0px;
}

.lts-slide {
    padding: 50px 20px;
    background: #f5f8ff;
    font-family: Arial, sans-serif;
  }
  
  .lts-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
  }
  
  .lts-tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    color: #777;
    cursor: pointer;
    border-bottom: 2px solid transparent;
  }
  
  .lts-tab.active {
    color: #3f38f3;
    border-color: #3f38f3;
  }
  
  .lts-tab-content {
    display: none;
  }
  
  .lts-tab-content.active {
    display: block;
  }
  
  .lts-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    height: 100%;
    flex-direction: column;
  }
  
  .lts-img-card{
      position: relative;
      width: 100%;
      height: 150px;
      border-radius: 10px 10px 0px 0px;
      overflow: hidden;
      margin-bottom: 10px;
  }
  
  .lts-img-card.featured::before{
      content: 'Featured';
      position: absolute;
      top: 10px;
      right: 0;
      padding: .4rem .8rem;
      border-top-left-radius: 25rem;
      border-bottom-left-radius: 25rem;
      color: white;
      z-index: 10;
      font-weight: bold;
      font-size: .8rem;
      background: red;
      box-shadow: 0px 2px 5px 1px rgba(0,0,0,.6);
  }
  
  .lts-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .lts-badges-wrapper{
      position: absolute;
      bottom: 10px;
      left: 10px;
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      width: 100%;
  }
  
  .lts-badge{
    font-size: .55rem;
    font-bold: bold;
    padding: .2rem .4rem;
    border-radius: 20rem;
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    background: rgba(255, 154, 0,.8);
    border: 1px solid white;
  }
  
  .int-cn {
    padding: 15px 15px 25px;
}
  .lts-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .lts-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #444;
  }
  
  .lts-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .lts-tags span {
    background: #ece8ff;
    color: #3f38f3;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .lts-location {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .lts-location a {
    color: #3f38f3;
    font-weight: bold;
  }
  .lts-slide a.button {
    margin: auto;
    display: block;
    width: 240px;
    text-decoration: unset;
    height: 50px;
    align-content: center;
}
  
  .lts-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .lts-rating {
    color: #009900;
    font-weight: bold;
    font-size: 13px;
  }
  
  .lts-price {
    text-align: right;
  }
  
  .lts-price strong {
    font-size: 16px;
    color: #000;
  }
  
  .lts-price small {
    font-size: 12px;
    color: #777;
    display: block;
  }
  
  .lts-nav {
    color: #3f38f3;
  }    
  .swiper-slide.lts-card {
    font-family: 'ECR';
}
section.last-cta {
    background-image: linear-gradient(to top, #00a1ff, #002f7a);
    padding: 170px 0px 90px;
    margin-top: -64px;
}
.last-cta h1, .last-cta h4 {
    color: #fff;
}
.lst-pol {
    clip-path: polygon(0 -1%, 100% -1%, 0 100%);
    height: 4rem;
    background: #f5f8ff;
}
section.faq {
    background: #f5f8ff;
    padding: 70px 0px;
}
.faq .accordion-item {
    border: unset;
    background: white;
    padding: 10px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 4px 0px #00000017;
}
.faq .accordion {
    border: unset;
    max-width: 900px;
    margin: 0 auto;
}
.faq .accordion-body {
    padding: 15px 0px 15px;
    line-height: 26px;
    border-top: 1px solid #d4d4d4;
    margin-top: 7px;
}
.faq button.accordion-header {
    font-size: 17px;
}
section.ct-l {
    background: #f5f8ff;
    padding: 0px 0px 60px;
}
.ic {
    display: flex;
    justify-content: space-between;
    width: 45%;
    margin: 0 auto;
    padding-top: 20px;
}
.c11 {
    display: flex;
    align-items: center;
    gap: 15px;
}
.im img {
    background: #fff;
    padding: 15px;
    border-radius: 100%;
    box-shadow: 0px 0px 6px 0px #80808026;
}
.i-cn h6 {
    font-size: 13px;
    color: #444;
    font-weight: 400;
}
.i-cn a {
    color: #222;
    font-family: 'ECB';
    display: block;
    margin: 8px 0px;
    text-decoration: unset;
}
.swiper-button-next.custom-nav, .swiper-button-prev.custom-nav {
    display: none;
}
  /* Mobile Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
    .ch-1 {
      flex-wrap: wrap;
      gap: 0px;
    }
    h1 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 15px;
      }
      h2 {
        font-size: 27px;
        line-height: 35px;
        margin-bottom: 15px;
      }
      h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 15px;
      }
      h4 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 15px;
      }
  
    nav {
      display: none;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      margin-top: 15px;
    }
  
    nav.active {
      display: flex;
      margin-top: 0px;
    }
    .ch-1 .menu {
      font-size: 14px;
      flex-direction: column;
    }
  
    .icons {
      margin-top: 10px;
      justify-content: flex-start;
    }
  
    .header {
      align-items: center;
      width: 100%;
      padding: 0px;
    }
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
      }
      .footer .logo {
        margin-bottom: 15px;
      }
      .social-icons {
        padding-top: 10px;
      }
      footer.footer {
        padding: 40px 0px 25px;
      }
      .footer-links a {
        font-size: 14px;
        padding-bottom: 5px;
      }
      .footer-links h4 {
        margin-bottom: 15px;
      }
      .rt, .lft {
        flex: unset;
        width: 100%;
        text-align: center;
    }
    .bl1 {
        flex: unset;
        width: 100%;
        text-align: center;
    }
    .tab-section-main .tab-text, .tab-section-main .tab-image {
        flex: unset;
        width: 100%;
        text-align: center;
    }
    .tab-section-main .tab-inner {
        flex-flow: wrap;
    }
    .tab-section-main .tabs {
        flex-flow: wrap;
    }
    .tab-section-main .tab {
        width: 50%;
        padding: 12px 15px;
    }
    .tab-section-main {
        padding: 40px 15px;
    }
    .tab-section-main h3 {
        text-align: center;
        margin-bottom: 30px;
    }
    section.imp-par.pr2, section.imp-par {
        padding: 30px 5px;
        text-align: center;
    }
    .imp-par-content h2 {
        font-size: 22px;
    }
    .bx {
        padding: 30px 18px;
    }
    section.lts-slide {
        padding: 20px 20px;
    }
    section.last-cta {
        padding: 90px 0px 35px;
    }
    .ic {
        width: 100%;
        flex-flow: wrap;
        justify-content: start;
        gap: 20px;
    }
    section.faq {
        padding: 30px 0px;
    }
    .car-sel {
        padding: 35px 0px;
    }
    .cm-comparison-table .title-cell {
        width: 120px;
        font-size: 14px;
    }
    .cm-comparison-table h4 {
        font-size: 16px;
        margin: 0px;
    }
    section.el-slider {
        padding: 50px 5px 10px;
    }
    section.cm-table {
        padding: 35px 0px;
    }    
}

/*how it works */
section.car-d.works {
  background: #fff;
  color: #000;
  z-index: 1;
  position: relative;
}
.works .car-im3 {
  background-image: url(/assets/images/how-carvago-works-hero.webp);
}
.works .car-im3 {
  height: 80%;
  width: 120%;
  min-height: 580px;
}
.works .cr-cnt p {
  font-size: 20px;
  max-width: 560px;
  line-height: 32px;
  margin: 20px 0px;
}
section.features.new {
  margin-top: -200px;
}
.video-section.new .container.video-wrapper {
  margin-top: 0px !important;
}
section.imp-par.how-new {
  background: transparent;
}
.how-new .imp-par-content {
  flex: 1 1 62%;
}
.how-new .imp-par-image {
  flex: 1 1 35%;
}
.blw-how {
  background: #c8ffe8;
  display: flex;
  width: 80%;
  border-radius: 6px;
  margin-top: 20px;
  gap: 30px;
  align-items: center;
}
.h-im img {
  background: #92e2cb;
  width: 200px;
}
.h-cn p {
  margin: 0px;
  font-size: 14px;
  padding-right: 50px;
}
.h-im img {
  background: #92e2cb;
  width: 200px;
  border-radius: 6px 0px 0px 6px;
}
.blw-how .h-cn h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.im-blw.blw-how {
  background: white;
  box-shadow: 0px 0px 4px 0px #00000030;
  padding: 25px;
  margin-top: -90px;
  margin-left: 40px;
  z-index: 9;
  position: relative;
  width: 85%;
}
.cn-bl h4 {
  font-size: 18px;
  line-height: 27px;
}
.cn-bl p {
  font-size: 14px;
  line-height: 25px;
}
.im-i img {
  width: 135px;
}
.ft-ct.container {
  background: url(/assets/images/footer-register-banner.webp) left center / contain no-repeat, linear-gradient(111.72deg, rgb(62, 71, 221) 14.24%, rgb(38, 42, 152) 85.76%);
  color: #fff;
  padding: 80px 60px;
  border-radius: 20px;
  margin-top: 50px;
}
.ft-ct h2 {
  color: #fff;
  padding-bottom: 20px;
}
.ft-ct h4 {
  color: #fff;
}
.ft-ct a.button {
  background-image: linear-gradient(to right, #ff9800 0%, #ff7300 33%, #db5600 82%);
  text-decoration: unset;
  display: inline-block;
  margin-top: 20px;
}
section.features.last.hw {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .works .car-im3 {
    height: 50%;
    width: 100%;
    min-height: 360px;
    transform: unset;
}
.blw-how {
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
}
.im-i img {
  width: 70px;
}
.h-im img {
  background: transparent;
  width: 100px;
  padding-top: 20px;
}
.h-cn p {
  padding: 0px 20px 30px;
}
.ft-ct.container {
  padding: 45px 30px;
}
.last h2 {
  max-width: 100%;
  padding-bottom: 10px;
}
.ft-ct a.button {
  margin-top: 10px;
}
.ft-ct h4 {
  font-size: 16px;
}
.works .cr-cnt p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 0px;
}
}


/*blog*/
.blogs .container {
    padding: 50px 15px;
}
.upper-blog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}
.cont-blog {
    width: 65%;
}
.blogs .ind-cards {
    width: 32%;
}
.card_img {
    height: 250px;
}
.card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.blogs .blog_cards {
    display: flex;
    flex-flow: wrap;
    gap: 23px;
}
span.blog-tag {
    background: #3e47dd;
    color: #fff;
    padding: 8px 15px;
    display: block;
    width: max-content;
    border-radius: 24px;
    font-size: 12px;
}
.blog_cards span.read_more {
    background: #3e47dd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    display: block;
    width: max-content;
    margin-top: 15px;
    font-size: 13px;
    text-decoration: unset;
}
.blog_author img {
    width: 22px;
}
.blog_author a {
    display: flex;
    align-items: center;
    font-size: 12px;
    text-decoration: unset;
    color: #000;
    gap: 10px;
    background: #edeef2;
    border-radius: 100px;
    padding: 5px 12px;
    font-weight: 600;
}
.blog_author {
    display: flex;
    gap: 10px;
    margin: 15px 0px;
    border: 1px solid #ddd;
    border-width: 0px 0px 1px;
    padding-bottom: 15px;
}
.blog_cards h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.blog_cards p {
    font-size: 14px;
    line-height: 22px;
}
@media (max-width: 767px) {
  .upper-blog {
    flex-direction: column;
    align-items: self-start;
    gap: 20px;
}
.cont-blog {
    width: 100%;
}
.button_blog a.button {
    display: block;
    font-size: 14px;
    padding: 10px 22px !important;
}
.blogs .ind-cards {
    width: 100%;
}
}
