/* =========================================================
   CODENYC® PROMOTIONAL
   LANDING / SERVICE PAGE
   ========================================================= */

.main {
    flex: 1;
    display: flex;
    align-items: center;
}

.body.price-list {
    background-color: #111111;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.body.price-list header,
.body.price-list .main,
.body.price-list footer {
    position: relative;
    z-index: 2;
}

.pricehub {
    background: #ffffff;
    color: #ffffff;
    width: 100%;
}


/* =========================================================
   HEADER
   ========================================================= */

@media (min-width: 992px) {

    #header .header-nav {
        display: flex;
        align-items: center;
        flex-grow: 1;
        justify-content: flex-start;
        align-self: stretch;
    }

}

@media (max-width: 991px) {

    #header .header-logo {
        display: none !important;
    }

    #header .header-container {
        position: relative;
    }

    #header .d-none.d-sm-inline-flex {
        display: inline-flex !important;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 !important;
    }

}


/* =========================================================
   SECONDARY NAV
   ========================================================= */

.pricehub-nav {
    background: #000;
    min-height: 66px;
    display: flex;
    align-items: center;
}

.pricehub-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
}

.pricehub-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricehub-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d6d6d6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all .2s ease;
    white-space: nowrap;
    box-sizing: border-box;
}


.pricehub-links a:nth-child(1) {
    width: 145px;
}

.pricehub-links a:nth-child(2) {
    width: 135px;
}

.pricehub-links a:nth-child(3) {
    width: 145px;
}

.pricehub-links a:nth-child(4) {
    width: 155px;
}

.pricehub-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.pricehub-links a.active {
    background: rgba(211, 32, 39, .25);
    border: 1px solid rgba(211, 32, 39, .55);
    color: #ffffff;
}


/* =========================================================
   COMPARE BUTTON
   ========================================================= */

.all-packages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #d32027 !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 17px;
    border-radius: 22px;
    transition: all .2s ease;
}

.all-packages:hover {
    background: #ed3e45 !important;
    color: #ffffff !important;
}

.all-packages i {
    font-size: 10px;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.pricehub-mobile-toggle {
    display: none;
}

@media (max-width: 767px) {

    .pricehub-links,
    .pricehub-nav .all-packages {
        display: none;
    }

    .pricehub-nav-inner {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .pricehub-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 340px;
        background: rgba(211, 32, 39, .25);
        border: 1px solid rgba(211, 32, 39, .55);
        border-radius: 7px;
        color: #ffffff;
        padding: 10px 14px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

    .pricehub-mobile-links {
        display: flex;
        flex-direction: column;
        margin-top: 8px;
    }

    .pricehub-mobile-links a {
        display: block;
        padding: 10px 14px;
        color: #d6d6d6;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .pricehub-mobile-links a.active {
        background: rgba(211, 32, 39, .25);
        color: #ffffff;
    }

    .pricehub-mobile-links a:hover {
        color: #ffffff;
    }

}

@media (min-width: 768px) {

    .pricehub-mobile-toggle,
    #pricehubMobileMenu {
        display: none !important;
    }

}


/* =========================================================
   HERO
   ========================================================= */

.pricehub-hero {
    text-align: center;
    padding: 90px 20px 76px;
}

.pricehub-eyebrow {
    display: inline-block !important;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(0, 0, 0, .15);
    color: #ffffff !important;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 22px;
}

.pricehub-hero h1 {
    margin: 0 auto 12px;
    max-width: 900px;
    color: #000;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricehub-hero h1 span {
    color: #d32027;
}

.pricehub-hero p {
    max-width: 820px;
    margin: 0 auto;
    color: #000a;
    font-size: 18px;
    line-height: 1.55;
}


/* =========================================================
   PACKAGE SECTION
   ========================================================= */

.packages-section {
    padding: 0 0 45px;
}

.packages-section .container {
    max-width: 900px;
}


/* =========================================================
   PACKAGE CARD
   ========================================================= */

.package-card {
    background: linear-gradient(
        145deg,
        #a52328 0%,
        #b92f3d 100%
    );

    border: 1px solid rgba(211, 32, 39, .35);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.package-content {
    padding: 40px 42px 42px;
    display: flex;
    flex-direction: column;
}


/* =========================================================
   PACKAGE BADGE
   ========================================================= */

.package-badge {
    display: inline-flex !important;
    align-items: center;
    align-self: flex-start;

    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 0, 0, .55);
    color: #ffffff !important;

    border-radius: 20px;
    padding: 7px 16px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;

    margin-bottom: 18px;
}


/* =========================================================
   PACKAGE TYPE
   ========================================================= */

.package-card h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 8px;
    letter-spacing: -.5px;
}

.package-subtitle {
    color: #edaeb1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}


/* =========================================================
   PRICE
   ========================================================= */

.package-price {
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 5px;
}

.package-period {
    color: #edaeb1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.package-description {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    margin: 26px 0 22px;
}


/* =========================================================
   SECTION DIVIDERS
   ========================================================= */

.package-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    border: 0;
    margin: 24px 0;
}


/* =========================================================
   INCLUDED TITLE
   ========================================================= */

.included-title {
    color: #edaeb1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.package-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px;
}

.package-card p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.package-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.package-features li {
    position: relative;
    list-style: none !important;
    padding-left: 22px;
    color: #e2e2e2;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 9px;
}

.package-features li::before {
    content: "✓" !important;
    position: absolute;
    left: 0;
    top: 0;
    color: #edaeb1 !important;
    font-weight: 800;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.package-button {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #d32027;
    color: #ffffff !important;

    text-decoration: none;
    font-size: 13px;
    font-weight: 800;

    padding: 14px 15px;
    border-radius: 7px;

    transition: all .2s ease;
}

.package-button:hover {
    background: #ed3e45;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.package-button i {
    font-size: 11px;
}


/* =========================================================
   COMPARISON LINK
   ========================================================= */

.comparison-section {
    padding: 0 20px 68px;
}

.comparison-section a {
    color: #d32027 !important;
    font-weight: 700;
    text-decoration: underline;
    transition: all .2s ease;
}

.comparison-section a:hover {
    color: #ed3e45 !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

#footer {
    background: #ffffff !important;
    border-top: none !important;
    margin-top: 0;
}

#footer .footer-copyright {
    background: transparent;
}

#footer .footer-copyright p {
    color: #000;
    font-size: 0.9em;
}


/* =========================================================
   BOOTSTRAP GUTTER RESET
   ========================================================= */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .pricehub-hero {
        padding: 70px 20px 55px;
    }

    .pricehub-hero h1 {
        font-size: 50px;
    }

    .packages-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .packages-section .container {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pricehub-hero {
        padding: 55px 20px 45px;
    }

    .pricehub-hero h1 {
        font-size: 36px;
        letter-spacing: -.5px;
    }

    .pricehub-hero p {
        font-size: 15px;
    }

    .packages-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .package-content {
        padding: 32px 22px 32px;
    }

    .package-badge {
        align-self: center;
    }

    .package-card h2 {
        font-size: 28px;
        text-align: center;
    }

    .package-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .package-price {
        font-size: 36px;
        text-align: center;
    }

    .package-period {
        text-align: center;
    }

    .package-description {
        font-size: 14px;
    }

    .package-card h3 {
        font-size: 19px;
    }

    .package-features li {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .pricehub-hero h1 {
        font-size: 31px;
    }

    .pricehub-hero p {
        font-size: 14px;
    }

    .pricehub-eyebrow,
    .package-badge {
        font-size: 11px;
    }

    .package-content {
        padding: 28px 18px 30px;
    }

    .package-card h2 {
        font-size: 25px;
    }

    .package-price {
        font-size: 32px;
    }

}


/* =========================================================
   DESKTOP REFINEMENT
   ========================================================= */

@media (min-width: 992px) {

    .packages-section .container {
        max-width: 1100px;
    }

    .package-content {
        padding: 55px 75px 60px;
    }


    /* =====================================================
       PACKAGE INTRODUCTION
       ===================================================== */

    .package-content > .package-description:first-of-type {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 18px;
        line-height: 1.65;
    }


    /* =====================================================
       PACKAGE TITLE
       ===================================================== */

    .package-card h2 {
        font-size: 40px;
    }

    .package-subtitle {
        font-size: 17px;
    }


    /* =====================================================
       PRICE
       ===================================================== */

    .package-price {
        font-size: 52px;
    }

    .package-period {
        font-size: 14px;
    }


    /* =====================================================
       SECTION LABELS
       ===================================================== */

    .included-title {
        text-align: center;
        font-size: 17px;
        letter-spacing: 1.5px;
    }


    /* =====================================================
       SECTION HEADINGS
       ===================================================== */

    .package-card h3 {
        font-size: 26px;
        text-align: center;
    }


    /* =====================================================
       WEBSITE DESCRIPTION
       ===================================================== */

    .package-card h3 + p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }


    /* =====================================================
       GENERAL PACKAGE TEXT
       ===================================================== */

    .package-card p,
    .package-description {
        font-size: 18px;
        line-height: 1.65;
    }


    /* =====================================================
       FEATURE LIST
       ===================================================== */

    .package-features {
        max-width: 560px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .package-features li {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 12px;
    }


    /* =====================================================
       FINAL BEST FOR STATEMENT
       ===================================================== */

    .package-card .package-description {
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       DIVIDERS
       ===================================================== */

    .package-divider {
        margin: 30px 0;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .package-button {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

}