.container {
    width: 100%;
    margin: 85px 0px 90px 0px;
}

.topStrip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 25px;
    color: white;
    background: linear-gradient(to right, var(--primary-dull), var(--primary), var(--primary-dull));
}

.topStrip h2 {
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 800;
}

.topStrip h2 span {
    color: rgb(200, 200, 200);
}

.topStripItem {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

.topStripItem div {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 800;
}

.topStripItem div p {
    font-size: 12px;
    color: rgb(220, 220, 220);
    font-weight: 400;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .topStrip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .topStrip {
        padding: 15px 14px;
    }

    .topStrip h2 {
        font-size: 20px;
    }

    .topStripItem {
        gap: 20px;
    }

    .topStripItem div {
        font-size: 25px;
    }
}


.marketContainer {
    text-align: center;
    margin-top: 50px;
    padding: 0px 20px;
}

.marketHead {
    font-size: 25px;
    font-family: var(--head-font);
    font-weight: 800;
    margin-bottom: 15px;
}

.marketTag {
    font-size: 16px;
    font-family: var(--head-font);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--text-dull);
    width: 30%;
    margin: auto;
    text-align: center;
    font-weight: 800;
}

@media (max-width: 800px) {
    .marketHead {
        font-size: 20px;
    }

    .marketTag {
        width: 80%;
        font-size: 15px;
    }
}


.marketItemWrapper {
    margin-top: 20px;
    position: relative;
    column-count: 3;
    padding: 20px;
    gap: 30px;
}

.marketItem {
    background: black;
    border-radius: 20px 0px 20px 0px;
    color: var(--text);
    padding: 50px 20px;
    text-align: left;
    border-right: 4px solid orange;
    border-bottom: 2px solid violet;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.6);
}

.itemHead {
    font-size: 18px;
    font-family: var(--head-font);
    margin-bottom: 15px;
    color: white;
}

.itemText {
    font-size: 14px;
    color: rgb(180, 180, 180);
    font-family: "Roboto Slab";
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.itemPrice {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: orange;
    font-family: "Roboto Slab";
}

.contactBtn {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px 0px 5px 0px;
    background: orange;
    color: black;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

@media (max-width: 850px) {
    .marketItemWrapper {
        column-count: 2;
    }
}

@media (max-width: 650px) {
    .marketItemWrapper {
        padding: 0;
        column-count: 1;
    }
}

.footer {
    margin-top: 50px;
    background: var(--bg-dull);
    padding: 50px 40px;
    color: var(--text);
    text-align: center;
}

.footer h3 {
    font-size: 28px;
    font-family: var(--head-font);
    color: var(--primary);
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.footerDrop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.footerDropItem {
    text-align: center;
}

.footerDropItem i {
    font-size: 100px;
    color: var(--primary);
}

.footerDropItem h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--head-font);
    margin-bottom: 20px;
    color: var(--text-dull);
    margin-top: 30px;
}

@media (max-width: 900px) {
    .footerDrop {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 50px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer p {
        font-size: 14px;
    }
}



/* // new-plan-system */
.marketPlanWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: auto;
    margin-top: 40px;
}

.planHeads,
.planItems {
    width: 20%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

.planHeads {
    background: var(--bg-dull);
    border-radius: 10px;
}

.planItems {
    border-radius: 10px;
    box-shadow: 0px 0px 8px var(--shadow);
    background: linear-gradient(45deg, var(--primary), var(--primary-dull));
    color: white;

}

.planHeadItem {
    font-size: 16px;
    border-bottom: 1px solid var(--reverse);
    width: 100%;
    padding-bottom: 5px;
    font-weight: 600;
}

.planItemItem {
    font-size: 16px;
    border-bottom: 1px solid var(--shadow);
    width: 100%;
    padding-bottom: 5px;
    font-weight: 500;
    color: white;
}

.planItemItem span {
    color: rgb(245, 245, 245);
    font-size: 12px;
    margin-left: 2px;
}

.planHeadsHeader {
    font-size: 15px;
    color: var(--text);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 15px;
    background: var(--bg);
    width: 100%;
}

.planItemsHeader {
    font-size: 15px;
    background: var(--text);
    width: 100%;
    text-align: center;
    color: var(--bg);
    font-weight: 500;
    padding: 4px 20px;
    border-radius: 20px;
}

.planHeadsPrice {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 10px;
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.planItemsPrice {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    padding: 8px 10px;
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.planItemsPrice span {
    color: var(--text-dull);
    font-weight: 600;
    font-size: 12px;
}

.planItemsPrice:hover {
    background: var(--bg-dull);
}

.mobileHeads {
    display: none;
}

.offerText {
    font-size: 14px;
    width: 100%;
    margin: auto;
    padding: 10px 10px;
    border-radius: 7px;
    margin-top: 20px;
    text-align: center;
    font-weight: 400;
    background: var(--bg-dull);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.offerText i {
    color: var(--accent);
}

.offerText p span {
    font-weight: 700;
}

.mobilePlans {
    display: none;
}

@media (max-width: 1100px) {
    .marketPlanWrapper {
        flex-direction: column;
        gap: 15px;
    }

    .planHeads,
    .planItems {
        width: 100%;
        flex-direction: row;
        gap: 5px;
        padding: 5px 5px;
    }

    .planHeadItem,
    .planItemItem {
        font-size: 10px;
        border-bottom: none;
    }

    .planItemItem span {
        font-size: 8px;
    }

    .planHeadsHeader,
    .planItemsHeader {
        font-size: 10px;
    }

    .planHeadsPrice,
    .planItemsPrice {
        font-size: 10px;
    }

    .planItemsPrice span {
        font-size: 9px;
    }
}

@media (max-width: 770px) {
    .offerText {
        flex-direction: column;
        font-size: 14px;
    }

    .planHeads,
    .planItems {
        display: none;
    }

    .mobilePlans {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        color: white;
    }

    .mobilePlanItem {
        background: linear-gradient(to top, var(--primary), var(--primary-dull));
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 7px;
        width: 100%;
    }

    .mobilePlanItem div {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .mobilePlanHeads {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .mobilePlanHeads p {
        border-bottom: 1px solid var(--shadow);
        padding-bottom: 4px;
        width: 100%;
        text-align: left;

    }

    .mobilePlanItemItem {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
        font-size: 14px;
    }

    .mobilePlanItemItem p {
        border-bottom: 1px solid var(--shadow);
        padding-bottom: 4px;
        width: 100%;
        text-align: right;
    }

    .planItemsPrice {
        font-size: 15px;
    }

    .planItemsPrice span {
        font-size: 12px;
    }
}