/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
}
/*
2. Remove default margin
*/
* {
    margin: 0;
}
/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
*/
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
/*
5. Improve media defaults
*/
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
/*
6. Remove built-in form typography styles
*/
input, button, textarea, select {
    font: inherit;
}
/*
7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/*
8. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

:root {
    --wrap-w: 1242px;
    --content-wrap-w: 800px;
    --cpw-light-blue: #E5F8FF;
    --cpw-white: #FFFFFF;
    --cpw-black: #000000;
    --cp-sm: 640px;
    --cp-md: 768px;
    --cp-lg: 1024px;
}

/* Utilities */
.tz-link {
    color: var(--cp-black) !important;
    display: inline;
    text-decoration: underline !important;
    text-underline-offset: 4px !important; 
    text-decoration-thickness: 1px !important;           
    font-weight: 700 !important;
}

.tz-section-wrap {
    max-width: var(--wrap-w);
    margin: 0 auto;
}

/* Global Classes */
#blog p {
    color: var(--cp-black) !important;
}

#blog #lift-kit-wrap h2 {
    font-size: clamp(1.875rem, 1.5909rem + 1.4205vw, 2.625rem);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

/* Back to top */
.backtotop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    visibility: hidden;
    user-select: none;
}

.backtotop:hover .backtotop-txt {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform: translateY(0);
}

.backtotop:hover .tz-arrow-upward {
    color: #fff;
    background: #62686d;
}

.backtotop .tz-arrow-upward {
    color: #000000;
    font-size: 2rem;
    padding: 0.8rem;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(60, 64, 67, 0.3), 0 0 0 0 rgba(60, 64, 67, 0.15);
    background: #3c4043;
    color: #9aa0a6;
}

.backtotop .backtotop-txt {
    color: #000000;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform: translateY(15px);
    transition: all 0.1s ease-out;
}

/* Logo */
.tf-cp-itg-logo {
    padding: 1rem;
    position: relative;
    z-index: 3;
}

.tf-cp-itg-logo a {
    display: inline-block;
}

.tf-cp-itg-logo a:focus {
    outline: none;
}

.tf-cp-itg-logo img {
    width: 200px;
}

#lift-kit-wrap {
    font-family: 'Inter', sans-serif;
}

/* Menu */
#lkts-main-nav-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2000;
}

.lkts-primary-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(12, 21, 54, 0) 0%, #0C1536 100%); */
    background: linear-gradient(0deg, rgba(17, 31, 48, 0.00) 14.78%, #111F30 100%);
    z-index: -1;
}

.lkts-primary-menu.bg-menu-active::after {
    background-color: #0C0C0C;
    transition: all 0.5s linear;
    box-shadow: 5px -1px 12px -5px #0C0C0C;
}

#tz-toggle-hamburger-icon {
    position: relative;
    /* background-color: var(--cp-white); */
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    top: 20px;
    right: 20px;
    position: absolute;
    padding: 5px;
    z-index: 9999;
}

#tz-toggle-hamburger-icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
}

#tz-toggle-hamburger-icon > div {
    width: 25px;
    height: 2px;
    background-color: var(--cp-white);
    margin: 5px;
    transition: all 0.3s ease;
}

#tz-toggle-hamburger-icon img {
    width: 28px;
}

.toggle-burger .tz-line-1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.toggle-burger .tz-line-2 {
    opacity: 0;
}

.toggle-burger .tz-line-3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

#tz-nav-transparent-bg {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
}

.tz-nav {
    position: fixed;
    align-items: center;
    text-align: left;
    padding: 2rem;
    margin: 0;
    background-color: #111f30;
    display: grid;
    place-content: center;
    height: 100vh;
    top: 0;
    right: -1px;
    z-index: 999;
    transform: translateX(100%);
    transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.tz-nav.toggle-nav-anim {
    transform: translateX(0);
}

.tz-nav .tz-main-nav {
    margin: 2rem auto 2rem !important;
    padding: 0;
    display: block;
    padding: 0;
}

.tz-nav .tz-main-nav li {
    margin: 0 !important;
    padding: 0 8px 0;
    display: inherit;
    list-style: none !important;
}

.tz-nav .tz-main-nav li.tz-active a {
    transition: all 0.3s ease;
    color: var(--cp-white) !important;
}

.tz-nav .tz-main-nav li.tz-active a:before {
    background-color: var(--cp-white);
    height: 1px;
    transform: translateX(0);
}

.tz-nav .tz-main-nav li a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    font-size: clamp(1.25rem, 0.93rem + 1.0667vw, 1.75rem);
    transition: all 0.3s ease;
    font-family: 'Inter-Tight', sans-serif;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.tz-nav .tz-main-nav li a span {
    position: relative;
    z-index: 5;
}

.tz-nav .tz-main-nav li a:before {
    content: "";
    transition: 0.4s;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: translateX(-101%);
    z-index: 1;
}

.tz-nav .tz-main-nav li a:hover {
    opacity: 1;
}

.tz-nav .tz-main-nav li a:hover:before {
    background-color: var(--cp-white);
    transform: translateX(0);
}

.tz-nav .nav-menu-social {
    margin: 0.125rem auto 0 auto;
}

.tz-nav .nav-menu-social .nav-social-list {
    margin: 0;
    padding: 0;
}

.tz-nav .nav-menu-social .nav-social-list li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    list-style: none;
}

.tz-nav .nav-menu-social .nav-social-list li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    display: grid;
    place-content: center;
}

.tz-nav .nav-menu-social .nav-social-list li a svg {
    width: 20px;
    height: 20px;
}

.tz-nav .nav-menu-social .nav-social-list li:nth-child(1) {
    margin-right: 0 !important;
}

/* socmed article styles */
.socmed{
    button{
        border: 0;
    }
    section{
        display: block;
        padding: 0 !important;
        margin: $gap 0 !important;
        background: transparent !important;

        a, button{
            background: #111F30 !important;
        }

        svg{
            width: 30px !important;
            height: 30px !important;
        }

        .tp-social-icon{
            gap:$gap;
            display: flex;
        }

    
    }

    .social-items {
        padding: 5px;
    }

    .social-items-prime {
        background-color: transparent !important;
    }
}

/* sticky button  */
#ft-share-button{
    svg{
        padding: 8px;
        border-radius: 4px;
        color: $white!important;
        background: #0C1536 !important;

        path.cpb-blue{
            fill: #FF7C1F !important;
        }
    }
}

/* Hero */
#blog .lkts-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    /* margin-top: -108px; */

    picture img {
        display: block;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .lkts-hero-info-wrap {
        width: 100%;
        margin-top: 430px;
        position: relative;

        &:before {
            content: "";
            position: absolute;
            width: 100%;
            height: calc(100% + 390px);
            left: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(0, 76, 128, 0.05) 0%, rgba(0, 76, 128, 0.05) 100%), linear-gradient(180deg, rgba(17, 31, 48, 0.00) 18.45%, rgba(17, 31, 48, 0.77) 44.85%, #000 115.72%);
            z-index: -1;
        }
        
        .lkts-hero-info {
            max-width: var(--wrap-w);
            margin: 0 auto;

            .lkts-hero-info-inner {
                max-width: 992px;
                padding: 0 1rem 4rem;
                margin: 0 auto;
                
                h1 {
                    font-family: 'Inter-Tight', sans-serif;
                    font-size: clamp(2.3rem, 0.8333rem + 4.9479vw, 4rem);
                    line-height: 1.1;
                    color: var(--cp-white);
                    text-align: left;
                    font-weight: 700;
                    display: block;
                    padding: 2rem 0;
                    position: relative;
                    z-index: 2;
                    margin: 0;
                }

                a {
                    color: var(--cpw-white) !important;
                }

                span:nth-child(1) {
                    color: var(--cp-orange);
                }

                .ebh-author-info {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: 20px;
                    color: var(--cp-white) !important;
                    margin-bottom: 30px;
                }

                .ebh-hero-desc {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: var(--cp-black) !important;
                    max-width: 992px;
                    
                    p {
                        margin-bottom: 0;
                        color: var(--cpw-white) !important;
                        padding: 0 0 25px;
                        
                        &:last-child {
                            margin-bottom: 0;
                        }
                        
                        .tz-link {
                            font-weight: 600;
                            color: var(--cp-white);
                        }
                    }
                }

            }
            
        }
    
    }
   


}

/* Brands Section */
#blog .lift-kits-brands {
    background-color: var(--cp-white);
    display: flex;
    flex-direction: column;
    gap: 60px;
    
    .lift-kits-brands-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
        padding: 4.175rem 1.175rem 0 1.175rem;
        
        h2 {
            font-family: 'Inter Tight', sans-serif;
            font-size: 42px;
            color: var(--cp-default-blue);
            line-height: normal;
        }
        
        .lift-kits-brands-intro {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 20px;
            line-height: 26px;
            color: var(--cp-black) !important;
            max-width: 1000px;
            margin-bottom: 20px;
        }
    }
}

#blog .lift-kits-brand-detail.skyjacker, #blog .lift-kits-brand-detail.rtoffroad {
    padding: 0 50px 30px 50px !important;
    margin: 0 auto !important;
}

/* Brand Detail Sections */
#blog .lift-kits-brands-details {
    background-color: var(--cp-white);

    .lift-kits-brand-detail {
        padding: 30px 50px 50px 50px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin: 60px auto;
        
        &.yht-auto,
        &.skyjacker,
        &.readylift,
        &.belltech,
        &.rtoffroad,
        &.rancho {
            background-color: transparent;

            .lkts-part-images .lkts-part-item .lkts-part-image {
                border: 1px solid #000000;
            }

            .lkts-brand-description .lkts-key-features .lkts-features-list {
                color: #000000;

                strong {
                    font-weight: 700;
                }
            }

        }
        
        &.lkts-lblue {
            background-color: #E5F8FF;
        }
        
        &.lkts-lgray {
            background-color: #F6F6F6;
        }
        
        .lkts-brand-header {
            display: flex;
            gap: 30px;
            align-items: center;
            
            .lift-kits-brand-logo-box {
                height: 135px;
                width: auto;
                display: flex;
                align-items: center;
                position: relative;

                &:before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    padding: 1px;
                    -webkit-mask:
                        linear-gradient(#fff 0 0) content-box,
                        linear-gradient(#fff 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none;
                }
                
                img {
                    max-width: 280px;
                    height: auto;
                }
            }
            
            a {
                color: var(--cp-black);
                font-weight: bold;
                text-decoration: underline;
                font-size: 18px;
            
            }
        }
        
        .lkts-part-images {
            display: flex;
            gap: 30px;
            align-items: start;
            flex-wrap: wrap;
            justify-content: center;
            
            .lkts-part-item {
                text-decoration: none;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                width: 360px;
                
                .lkts-part-image {
                    border-radius: 4px;
                    width: 360px;
                    height: 320px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 17.804px 39.881px;
                    
                    img {
                        max-width: 100%;
                        height: auto;
                        object-fit: cover;
                    }
                }
                
                .lkts-part-name {
                    font-family: 'Inter', sans-serif;
                    font-weight: 400;
                    font-size: 18px;
                    text-align: center;
                    color: white;
                    line-height: normal;
                    margin: 0;
                }
            }
        }
        
        .lkts-brand-description {
            display: flex;
            gap: 50px;
            align-items: start;

            .logo-info {
                p:nth-child(1) {
                    font-weight: 500;
                }
            }

            .post-tip {
                display: flex;
                align-items: center;
                gap: 18px;
                margin: 40px 0;
                padding: 30px 16px;
                border: 1px solid var(--cp-black);
                border-radius: 10px;
                max-width: 480px;

                p {
                    font-size: 18px;
                }

                img {
                    max-width: 90px;
                    height: 40px;
                }

                p {
                    font-weight: 300;
                }
            }
            
            p {
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                line-height: 26px;
                color: white;
                width: 420.961px;
                
                strong {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                }
            }
            
            .lkts-key-features {
                flex: 1 1 0;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: flex-start; 
                
                .lkts-features-header {
                    background-color: black;
                    padding: 15px 20px;
                    border-radius: 10px;
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 16px;
                    color: white;
                    text-transform: uppercase;
                    letter-spacing: 1.6px;
                    text-align: center;
                }
                
                .lkts-features-list {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding: 0;
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    color: var(--cp-black);
                    
                    li {
                        margin-left: 30px;
                        line-height: 26px;

                        strong {
                            font-weight: 700;
                        }
                    }
                }
            }

        }

        .lkts-cta-wrap {

            display: flex;
            justify-content: center;

            a {

                text-decoration: none;
                display: block;

                .lkts-cta-button {
                    background-color: #ffcd05;
                    color: black;
                    border: none;
                    border-radius: 10px;
                    padding: 30px;
                    height: 58px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-family: 'Inter Tight', sans-serif;
                    font-weight: 700;
                    font-size: clamp(1.25rem, 0.2083rem + 2.6042vw, 1.275rem);
                    line-height: 26px;
                    cursor: pointer;
                    white-space: pre;
                    
                    &:hover {
                        background-color: #f3c50f;
                    }
                }

            }

        }

    }

}

/* Our Pick: YHT Auto */
#blog .lkts-yht-auto {
    background-color: #004C80;
    
    .pick-yht-auto-section {
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        .pick-yht-auto-content {
            display: flex;
            align-items: center;
            
            .pick-yht-auto-image {
                width: 50%;
                height: 100vh;
                overflow: hidden;
                position: relative;
                
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: right center;
                }
            }
            
            .pick-yht-auto-text {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 30px;
                padding: 0 65px;
                
                .lkts-checkmark-icon {
                    width: 60px;
                    height: 60px;
                }
                
                h2 {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: 42px;
                    color: white;
                    line-height: normal;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: #ffffff !important;
                    
                    strong {
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                    }
                }
            }
        }
    }
}

/* What Does a Lift Kit Do? */
#blog .lkts-lift-kit-do {
    background-color: #111f30;
    
    .lkts-lift-kit-do-section {
        /* padding: 100px 1rem; */
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        .lkts-lift-kit-do-content {
            display: flex;
            align-items: center;
            
            .lkts-lift-kit-do-image {
                width: 50%;
                height: 100vh;
                overflow: hidden;
                position: relative;
                
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
            
            .lkts-lift-kit-do-text {
                width: 50%;
                display: flex;
                flex-direction: column;
                padding: 0 65px;
                gap: 30px;
                
                .lkts-checkmark-icon {
                    width: 60px;
                    height: 60px;
                }
                
                h2 {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: 42px;
                    color: white;
                    line-height: normal;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: #ffffff !important;
                    
                    strong {
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                    }
                }
            }
        }
    }

}

/* Three Different Types of Kits */
.type-of-kits {
    background-color: #F6F6F6;
    
    .type-of-kits-content {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
        
        
        .type-of-kits-header {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            text-align: center;
            
            h2 {
                font-family: 'Inter Tight', sans-serif;
                font-size: 42px;
                color: #111F30;
                line-height: normal;
            }

            h3 {
                font-family: 'Inter Tight', sans-serif;
                font-style: italic;
                font-weight: normal;
                font-size: 30px;
                color: #111F30;
                line-height: normal;
            }
            
            p {
                font-family: 'Inter', sans-serif;
                font-weight: 300;
                font-size: 20px;
                line-height: 26px;
                color: #000000;
                max-width: 1000px;
                text-align: left;

                strong {
                    font-weight: 700;
                }
            }
        }
        
        .type-of-kits-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            
            .type-of-kits-item {
                flex: 1 1 300px;
                max-width: 373.33px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: center;
                
                .type-of-kits-image {
                    width: 100%;
                    overflow: hidden;
                    position: relative;
                    
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                
                h3 {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 26px;
                    color: #000000;
                    margin: 0;
                }
                
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: white;
                    margin: 0;
                }
            }
        }
    }

}

/* Choosing the Right Kit for Your Ride, Should You DIY a Lift, Post-Installation Care and Maintenance */
#blog .ride-lift-maintenance {
    background-color: #E5F8FF;
    
    .ride-lift-maintenance-wrap {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        .ride-lift-maintenance-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: flex-start;
            
            .ride-lift-maintenance-item {
                display: flex;
                gap: 30px;
                align-items: start;
                align-self: flex-start;
                height: auto;
                flex: 1;
                
                .check-icon {
                    width: 56px;
                    height: 56px;
                    flex-shrink: 0;
                }
                
                .ride-lift-maintenance-content {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                    
                    h3 {
                        color:#004C80 !important;
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                        font-size: clamp(1.6875rem, 1.375rem + 0.7813vw, 1.875rem);
                        color: white;
                        line-height: 1.1;
                        margin: 0;
                    }
                    
                    p {
                        font-family: 'Inter', sans-serif;
                        font-weight: 300;
                        font-size: 20px;
                        line-height: 26px;
                        color: var(cp-black);
                        margin: 0;
                    }
                }
            }
        }
    }
}

/* Lift Kit FAQs */
.lkts-faq {
    background-color: var(--cp-white);
    
    .lkts-faq-wrap {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        
        h2 {
            font-family: 'Inter Tight', sans-serif;
            font-size: 42px;
            font-weight: 500;
            color: #000000 !important;
            text-align: center;
            line-height: normal;
        }

        .faq-wrapper {
            width: 100%;
            max-width: 800px;
            overflow: hidden;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Accordion Item */
        .faq-item {
            border: 1px solid var(--cp-black);
            border-radius: 8px;
            
        }

        /* The Button (Question) */
        .faq-question {
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 700;
            color: var(--cp-black);
            transition: background 0.2s ease;
        }

        /* Plus/Minus Icon Styling */
        .icon {
            position: relative;
            width: 18px;
            height: 18px;
        }

        .icon::before, .icon::after {
            content: '';
            position: absolute;
            background-color: var(--cp-black);
            transition: transform 0.3s ease;
        }

        /* Horizontal line */
        .icon::before {
            width: 100%;
            height: 2px;
            top: 8px;
            left: 0;
        }

        /* Vertical line (the one that disappears/rotates) */
        .icon::after {
            width: 2px;
            height: 100%;
            top: 0;
            left: 8px;
        }

        /* Active State Icon (Minus) */
        .active .icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }
        .active .icon::before {
            transform: rotate(180deg);
        }

        /* Answer Content (Hidden by default) */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer-content {
            padding: 0 20px 0 20px;
            color: #222222;
            line-height: 1.6;
            font-size: 0.95rem;

            p {
                padding: 0 0 20px 0;
            }
        }



    }
}


/* JC Whitney Performance Hub */
.jcw-hub {
    background-color: #F6F6F6;
    
    .jcw-hub-content {
        padding: 100px 1rem;
        display: flex;
        flex-direction: column;
        gap: 60px;
        align-items: center;
         
        .jcw-hub-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            text-align: center;

            .jcw-hub-logo {
                max-width: 520px;
            }
            
            h2 {
                font-family: 'Inter Tight', sans-serif;
                color: #111F30;
            }

            .jcw-hub-content-wrap {
                max-width: 1000px;
                display: flex;
                flex-direction: column;
                gap: 20px;
            
                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 26px;
                    color: #000000;
                    text-align: left;

                    strong {
                        font-weight: 700;
                    }
                }
            }


            .lkts-cta-wrap {

                display: flex;
                justify-content: center;

                a {

                    text-decoration: none;
                    display: block;

                    .lkts-cta-button {
                        background-color: #ffcd05;
                        color: black;
                        border: none;
                        border-radius: 10px;
                        padding: 30px;
                        height: 58px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-family: 'Inter Tight', sans-serif;
                        font-weight: 700;
                        font-size: clamp(1.25rem, 0.2083rem + 2.6042vw, 1.275rem);
                        line-height: 26px;
                        cursor: pointer;
                        white-space: pre;
                        
                        &:hover {
                            background-color: #f3c50f;
                        }
                    }

                }

            }

        }
        

    }

}


/* Responsive Design */
@media (max-width: 1242px) {

    #blog {

        .lift-kits-brands-details {
            .lift-kits-brand-detail {
                &.skyjacker, &.belltech, &.audi {
                    margin: 0 1rem;
                }
            }
        }

        .lift-kits-brands-details {
            .lift-kits-brand-detail {
                padding: 50px 1rem;
            }
        }

        .consider-brake-parts {
            .consider-brake-parts-wrap {
                .consider-brake-parts-grid {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 40px;

                    .consider-brake-parts-item {
                        box-sizing: border-box;
                        max-width: none;
                        width: 100%;
                    }
                }
            }
        }

    }

}


@media (max-width: 897px) {

    #blog {

        /* top lift brands */
        .lift-kits-brands-details {
            padding: 0;
            margin: 0 16px;

            .lift-kits-brand-detail {
                padding: 30px 16px 50px 16px !important;
                gap: 30px;


                .lkts-brand-header {
                    flex-direction: column;
                    gap: 16px;

                    .lift-kits-brand-logo-box {
                        height: 95px;
                    }
                }

                .lkts-brand-description {
                    flex-direction: column;
                    gap: 40px;

                    .post-tip {
                        margin: 40px 0 0 0;
                        max-width: 100%;
                    }

                    p {
                        width: 100%;
                    }
                }

                &.skyjacker, &.rtoffroad {
                    margin: 0 0 50px 0 !important;
                    padding: 20px 8px !important;

                    .lkts-part-images .lkts-part-item .lkts-part-image {
                        width: 262.64px;
                        height: 262.64px;
                    }
                }

                &.yht-auto, &.readylift, &.belltech, &.rancho {
                    margin: 50px 0;

                    .lkts-part-images .lkts-part-item .lkts-part-image {
                        width: 262.64px;
                        height: 262.64px;
                    }
                }

                .lkts-part-images {
                    display: flex;
                    flex-wrap: nowrap;
                    gap: 16px;
                    overflow-x: auto;
                    -webkit-overflow-scrolling: touch;
                    scroll-snap-type: x mandatory;
                    padding-bottom: 8px;
                    justify-content: flex-start;
                    
                    .lkts-part-item {
                        flex: 0 0 262px; /* card width for swipe */
                        scroll-snap-align: start;
                        gap: 9.936px;
                        width: 262.64px;
                    }
                }
            }
        }

        /* our pick yht auto*/
        .lkts-yht-auto {
            & .pick-yht-auto-section {
                .pick-yht-auto-content {
                    flex-direction: column;

                    .pick-yht-auto-image {
                        order: 2;
                        width: 100% !important;
                        height: 470px !important;
                        padding: 0 16px;
                        margin: 30px 0 60px 0;

                    }

                    .pick-yht-auto-text {
                        order: 1;
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 30px;
                        padding: 50px 16px 16px 16px;
                    }

                }
            }
        }

        /*what does lift do */
        .lkts-lift-kit-do {
            .lkts-lift-kit-do-section {


                .lkts-lift-kit-do-content{
                    flex-direction: column;

                    .lkts-lift-kit-do-image {
                        width: 100% !important;
                        height: 470px !important;
                        padding: 0 16px;
                        margin: 30px 0 60px 0;

                    }

                    .lkts-lift-kit-do-text {
                        width: 100% !important;
                        display: flex;
                        flex-direction: column;
                        gap: 30px;
                        padding: 50px 16px 16px 16px;
                    }

                }


            }
        }


        /*ride lift maintenance*/
        .ride-lift-maintenance {
            & .ride-lift-maintenance-wrap {
                .ride-lift-maintenance-grid {
                    flex-wrap: inherit;
                    flex-direction: column;

                    .ride-lift-maintenance-item {
                        flex: inherit;

                        &.ride-lift-maintenance-desc {
                            order: 1;
                        }

                        &.ride-lift-maintenance-img {
                            display: flex;
                            flex-direction: column;
                            width: 100%;
                            height: 470px;
                            overflow: hidden;
                            position: relative;

                            .ride-lift-maintenance-content {
                                order: 2;
                                width: 100%;

                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    object-position: top center;
                                }
                            }
                        }
                    }

                }
            }
        }


    }
}

/* Mobile */
@media (max-width: 640px) {

    #blog {

        .tf-cp-itg-logo {
            padding: 16px;
        }

        #tz-toggle-hamburger-icon {
            top: 20px;
            right: 18px;
        }


        .lkts-hero {
            margin-top: 0;

            picture img {
                width: 100%;
                /* height: auto; */
            }
        }    

        .lkts-hero {
            .lkts-hero-info-wrap {
                margin-top: 340px;

                &:before {
                    height: calc(100% + 390px);
                    background: linear-gradient(0deg, rgba(0, 76, 128, 0.05) 0%, rgba(0, 76, 128, 0.05) 100%), linear-gradient(180deg, rgba(17, 31, 48, 0.00) 18.45%, rgba(17, 31, 48, 0.77) 44.85%, #000 115.72%);
                    /* background: linear-gradient(to bottom, rgba(191, 191, 207, 0) 0%, rgba(191, 191, 207, 1) 14.904%, #BFBFCF 100%); */
                }
            }
        }

        .lkts-hero {
            .lkts-hero-info-wrap {
                .lkts-hero-info {
                    .lkts-hero-info-inner {
                        .esh-hero-desc {
                            max-width: none;
                            width: 100%;
                        }
                    }
                }
            }
        }

        .lkts-hero {
            .lkts-hero-info-wrap {
                .lkts-hero-info {
                    .lkts-hero-info-inner {
                        max-width: none;
                        width: 100%;
                        padding: 2rem 1rem 4rem;
                    }
                }
            }
        }

        .lift-kits-brands {
            .lift-kits-brands-content {
                padding: 40px 1rem 0 1rem;
            }
        }

        .lift-kits-brands {
            .lift-kits-brands-content {
                .lift-kits-brands-logos {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    a {
                        display: flex;
                        flex: 0 0 calc(50% - 10px);
                        justify-content: center;
                    }
                    .lift-kits-brands-logo-item {
                        flex: 1 1 auto;
                        width: 100%;

                        img {
                            max-width: 160px;
                            height: auto;
                            margin: 0 auto;
                        }
                    }
                }
            }
        }

        .lkts-yht-auto {
            .pick-yht-auto-section {
                padding: 30px 0;

                .pick-yht-auto-content {
                    flex-direction: column;
                    padding: 0 1rem;

                    .pick-yht-auto-image {
                        width: 100%;
                        height: 320px;
                    }

                    .pick-yht-auto-text {
                        width: 100%;

                        .lkts-checkmark-icon {
                            display: table;
                            margin: 0 auto;
                        }

                        h2 {
                            text-align: center;
                        }
                    }
                }
            }
        }

        .type-of-kits {
            .type-of-kits-content {
                padding: 50px 1rem;
            }
        }

        & .lkts-yht-auto {
            & .pick-yht-auto-section {
                & .pick-yht-auto-content {
                    .pick-yht-auto-text {
                        order: 1;
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 30px;
                        padding: 50px 0 0 0;
                    }

                    .pick-yht-auto-image {
                        padding: 0;
                        height: 280px !important;
                    }
                }
            }
        }

        .lkts-lift-kit-do {
            & .lkts-lift-kit-do-section {
                & .lkts-lift-kit-do-content {
                    & .lkts-lift-kit-do-image {
                        height: 280px !important;

                        img {
                            object-position: center center !important;
                        }
                    }
                }
            }
        }

        /*ride lift maintenance*/
        .ride-lift-maintenance {
            & .ride-lift-maintenance-wrap {
                padding: 50px 1rem;
                .ride-lift-maintenance-grid {

                    .ride-lift-maintenance-item {

                        &.ride-lift-maintenance-img {
                            height: 330px;
                        }
                    }

                }
            }
        }


    }

}

