:root {
    --h1-home-font-size: 50px;
    --h1-home-font-family: 'Epilogue', sans-serif;
    --h1-home-font-weight: 400;

    --h2-home-font-size: 48px;
    --h2-home-font-family: 'Epilogue', sans-serif;
    --h2-home-font-weight: 400;
    --h2-home-line-height: 60px;

    --h3-home-font-size: 22px;
    --h3-home-font-family: 'Epilogue', sans-serif;
    --h3-home-font-weight: 500;
    --h3-home-line-height: 62px;

}

h1 {
    font-size: var(--h1-home-font-size);
    font-family: var(--h1-home-font-family);
    font-weight: var(--h1-home-font-weight);
    color: #fff;
}

h2,
h2.h2-title {
    font-size: var(--h2-home-font-size);
    font-family: var(--h2-home-font-family);
    font-weight: var(--h2-home-font-weight);
    line-height: var(--h2-home-line-height);
    color: #FFFFFF;
}

h3 {
    font-size: var(--h3-home-font-size);
    font-family: var(--h3-home-font-family);
    font-weight: var(--h3-home-font-weight);
    line-height: var(--h3-home-line-height);
    color: #FFFFFF;
    ;
}

section {
    margin: 55px 0;
}

.limo-services-list-item ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.limo-services-list-item ul li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
}

.limo-services-list-item ol li {
    list-style-type: auto;
}

.limo-services-list-item p,
.limo-services-list-item ol li {
    font-family: Sora;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #C9C9C9;
}

.limo-services-list-item h3 {
    line-height: 41px;
    color: #F3F3F3;
}

#limo-services .first-row p {
    color: #A6A6A6;
    font-family: Sora;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.row.first-row {
    margin-bottom: 30px;
}

.limo-services-list-item ol {
    padding: 0 20px;
}

.limo-services-list-item div {
    padding: 0 25px;
}

.limo-services-list-item div:nth-child(even) {
    border-left: 1px solid #525252;
    border-right: 1px solid #525252;
}

/* Limo Services */
#limo-services {
    color: #fff;
}

.row.first-row p {
    color: #A6A6A6;
    font-family: Sora;
    font-size: 14px;
    line-height: 28px;
}

.limo-services-list-item {
    row-gap: 40px;
}

.limo-services-list-item div {
    padding: 0 25px;
}

.limo-services-list-item div:nth-child(even) {
    border-left: 1px solid #525252;
    border-right: 1px solid #525252;
}

/* Typography */
.limo-services-list-item p,
.limo-services-list-item ol li {
    font-family: Sora;
    font-size: 16px;
    line-height: 28px;
    color: #C9C9C9;
}

.limo-services-list-item h3 {
    color: #F3F3F3;
    line-height: 41px;
}

/* List */
.limo-services-list-item ol {
    padding-left: 20px;
}



/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .limo-services-list-item div:nth-child(even) {
        border-left: none;
        border-right: none;
        padding-top: 20px;
        border-top: none;
    }

    .limo-services-list-item div {
        padding: 20px 0;
    }

    .limo-services-list-item {
        display: block;
    }

    .limo-services-list-item div {
        width: 100%;
    }

    /* p.nsc-story-description br {
        display: none;
    } */
}

@media (max-width: 576px) {
    .limo-services-list-item div {
        padding: 10px 12px;
    }

    #hero-banner {
        margin: 0;
    }

    .limo-services-list-item {
        row-gap: 0px;
    }

    #limo-services .first-row p,
    .limo-services-list-item p,
    .limo-services-list-item ol li {
        margin: 0;
    }

    .nsc-story-title {
        font-size: 34px !important;
    }
}

/* Limousine Story */
.nsc-limousine-story-section {
    color: #fff;
    text-align: center;
}

.nsc-story-description {
    font-family: Sora;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #A6A6A6;
}

.nsc-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.nsc-story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nsc-story-item.large {
    grid-row: span 2;
}

.nsc-story-item.small {
    height: 280px;
}

/* ---------- RESPONSIVE ORDER FIX ---------- */
@media(max-width: 992px) {

    .nsc-story-grid {
        grid-template-columns: 1fr;
    }

    /* Order for mobile/tablet */
    .item-1 {
        order: 1;
    }

    /* large */
    .item-2 {
        order: 2;
    }

    /* small */
    .item-4 {
        order: 3;
    }

    /* small */
    .item-3 {
        order: 4;
    }

    /* large */

    .nsc-story-item.large,
    .nsc-story-item.small {
        height: auto;
    }
}

@media(max-width: 576px) {
    .nsc-story-grid {
        grid-template-columns: 1fr;
    }
}