.mpgd-app-wrap, .hyundai-lp-wrap {
    font-size: 20px;
    .mpgd-app-header {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        @media (min-width: 1024px) {
            flex-direction: row;
        }
        .mpgd-header-content {
            display: flex;
            flex-direction: column;
            justify-content: start;
            gap: 1rem;
            @media  (min-width: 1024px) {
                flex: 0 1 40rem;
            }
            .mpgd-header-title {
                font-weight: 700;
            }
            .mpgd-links {
                display: flex;
                flex-wrap: wrap;
                gap: 0.75rem;
            }
        }
    }
    .mpgd-cards {
        .mpgd-cards-header {
            text-align: center;
            margin-block: 2rem;
            @media (min-width: 1024px) {
                margin-block: 4rem;
            }
            small {
                font-size: 1rem;
            }
        }
        .mpgd-cards-wrap {
            display: grid;
            gap: 1rem;
            @media (min-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
            }
            @media (min-width: 1024px) {
                grid-template-columns: repeat(3, 1fr);
            }
            .mpgd-card {
                padding: 1.5rem 0.75rem;
                box-shadow: 0 0 1px #002c5f;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                justify-content: center;
                position: relative;
                cursor: pointer;
                &:hover .card-link {
                    opacity: 0.5;
                }
                .card-link {
                    &::before {
                        content:"";
                        inset: 0;
                        position: absolute;
                    }
                }
                .card-content {
                    height: 100%;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }
            }
        }
    }
    .modal {
        opacity: 0;
        pointer-events: none;
        position: fixed;
        display: flex;
        height: 100dvh;
        width: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,0.5);
        transition: opacity 0.3s ease;
        &.active-modal {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-content {
            background-color: #fff;
            padding: 1rem;
            display: grid;
            gap: 1rem;
            max-width: 45rem;
            .modal-title {
                text-align: center;
            }
        }
        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 0.75rem;

        }
    }
    .mpgd-box {
        background-color: #002c5f;
        padding: 1rem;
        margin-block: 2rem;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        text-align: center;
        @media (min-width: 1024px) {
            flex-direction: row;
            align-items: center;
        }
        .mpgd-box-col {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            flex: 0 1 50%;
            & p, h2 {
                color: #fff;
            }
        }
        .mpgd-box-content {
            display: flex;
            gap: 0.75rem;
            background-color: #fff;
            color: #000;
            padding: 0.75rem;
            text-align: left;
            p {
                color: #000;
            }
        }
        &.one-col {
            justify-content: center;
            padding-bottom: 3rem;
            margin-top: 4rem;
            .mpgd-box-col {
                flex: 1;
                max-width: 56rem;
                .mpgd-box-content {
                    width: 100%;
                    padding: 1rem;
                    strong {
                        font-size: 1.5rem;
                    }
                }
            }
        }
    }
    .mpgd-faq {
        display: flex;
        flex-direction: column;
        align-items: center;
        .mpgd-faq-header {
            text-align: center;
            padding-block: 2rem;
            @media (min-width: 1024px) {
                padding-block: 4rem;
            }
        }
        .collapse-section {
            display: flex;
            flex-direction: column;
            .accordion-body {
                position: relative;
                cursor: pointer;
                padding: 0.5rem;
                transition: opacity 0.3s ease;
                .accordion-header {
                    a {
                        inset: 0;
                        position: absolute;
                        &:hover {
                            background-color: transparent;
                        }
                        &.active {
                            background-color: transparent;
                        }
                    }
                    &:hover {
                        opacity: 0.5;
                    }
                }
                .accordion-title {
                    margin-block: 0.5rem;
                    font-size: 1.125rem;
                    z-index: 1;
                }
                .accordion-content-inner {
                    cursor: auto;
                    padding: 1rem 0;
                    z-index: 10000;
                    max-width: 90%;
                    position: relative;
                    display: block;
                }
            }
        }
    }
    .mpgd-footer {
        .mpgd-footer-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 2.5rem;
            @media (min-width: 1024px) {
                flex-direction: row;
            }
            .mpgd-footer-content {
                flex: 0 1 50%;
            }
            .mpgd-footer-buttons {
                padding: 1rem;
                display: flex;
                justify-content: center;
            }
        }
    }
}
.hyundai-lp-wrap {
    .mpgd-app-header {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://api.pgd.ovh/uploads_hyundai/lp-ev-banner.jpg") center no-repeat;
        background-size: cover;
        min-height: 46rem;
        justify-content: center;
        color: #fff;
        @media (min-width: 1024px) {
            justify-content: start;
        }
    }
    .hyundai-lp-cards {
        margin-block: 4rem;
    }
    .hyundai-lp-cards-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    .hyundai-lp-cards-wrap {
        display: grid;
        color: #fff;
        gap: 2rem;
        @media (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (min-width: 1024px) {
            grid-template-columns: repeat(4, 1fr);
        }
        .card-content {
            background-color: #002c5f;
            display: flex;
            justify-content: center;
            align-items: start;
            padding: 2rem;
            .card-body {
                max-width: 75%;
                text-align: center;
                img {
                    width: 100%;
                    max-width: 3.5rem;
                }
            }
        }
    }
    .models-section-wrap {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        @media (min-width: 1024px) {
            flex-direction: row;
        }
        .models-section-model a {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            img {
                max-width: 250px;
            }
        }
    }
    &.occupations {
        .container > h2 {
            margin-block: 4rem;
        }
        .mpgd-app-header {
            min-height: 30rem;
            @media (min-width: 768px) {
                min-height: 36rem;
            }
        }
        .mpgd-header-content {
            text-align: right;
            width: fit-content;
            margin-left: auto;
            gap: 0.5rem;
            .block-text {
                @media (min-width: 768px) {
                    display: block;
                }
            }
            h1 {
                font-size: 2rem;
                margin: 0;
                @media (min-width: 1024px) {
                    font-size: 4rem;
                }
            }
            .subtitle {
                font-size: 1.5rem;
                font-weight: 500;
            }
        }
        .accordion-header {
            position: relative;
            padding-block: 1.25rem;
            transition: opacity 0.3s ease;
            &:hover {
                opacity: 0.5;
            }
            .accordion-title {
                margin: 0;
            }
            a {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                padding: 0;
                width: 100%;
                height: 100%;
                background: transparent !important;
            }

        }
        .car-card {
            img {
                transition: all 0.3s ease;
                transform: scale(0.9);
            }
            &.selected {
                border: 3px solid #002c5f;
                img {
                    transform: scale(1);
                }
            }
        }

    }
    &.lp-tuscon {
        .mpgd-header-content {
            max-width: 30rem;
            .subtitle {
                font-weight: 500;
            }
            .mpgd-links {
                margin: 0;
            }
        }
        .text-section {
            position: relative;
            margin-block: 7.5rem 5rem;
            &::before {
                content: "Hyundai TUSCON";
                position: absolute;
                top: -2.5rem;
                left: 50%;
                transform: translateX(-50%);
                text-align: center;
                width: 100%;
                font-size: 3rem;
                font-weight: 700;
                color: #eaeaeb;
                z-index: -1;
                @media (min-width: 1024px) {
                    top: -4rem;
                    font-size: 5.5rem;
                }
                @media (max-width: 435px) {
                    top: -6.25rem;
                }
            }
            .text-section-content {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                font-size: 1.125rem;
            }
            &.no-bg-text {
                margin-block: 0;
                &::before {
                    content: '';
                    display: none;
                }
            }
        }
        .lp-tuscon-cards {
            max-width: 900px;
            margin-inline: auto;
            img {
                margin-bottom: 0;
            }
            .left-right-section {
                @media (min-width: 768px) {
                    padding-top: 0;
                }
                .section-content {
                    @media (min-width: 768px) {
                        padding-inline: 2rem;
                    }
                    .section-text {
                        margin: 0;
                    }
                }
            }
        }
        .mpgd-links {
            width: fit-content;
            margin-inline: auto;
            margin-block: 7.5rem;
        }
        .lp-tuscon-list {
            background: #323232;
            padding: 0.5rem;
            @media (min-width: 768px) {
                padding: 2rem;
            }
            ul {
                li {
                    margin-block: 0.75rem;
                    font-size: 14px;
                    color: #fff;
                    list-style: none;
                    &::before {
                        content: '';
                    }
                }
            }
        }
        .lp-tuscon-images {
            position: relative;
            width: 100%;
            margin-block: 10rem 7.5rem;
            display: flex;
            justify-content: flex-end;
            min-height: 400px;
            @media (min-width: 1024px) {
                min-height: 600px;
            }

            img {
                display: block;
                object-fit: cover;
            }

            img.bigger {
                width: 85%;
                height: auto;
                z-index: 1;
            }

            img.smaller {
                position: absolute;
                width: 45%;
                height: auto;
                top: -10%;
                left: 0;
                z-index: 2;
            }
        }
        .lp-tuscon-form-title {
            text-align: center;
            margin-top: 4rem;
        }
    }
}
.select-is-readonly {
    pointer-events: none;
    .nice-select::after {
        content: '';
        display: none;
    }
}
body:has(.occupations, .lp-tuscon) #nav_car_placer {
    display: none;
}