/* ---HEADER STYLES--- */

header {
    position: relative;
}

/* ---PRICING STYLES--- */

.pricing_section {
    padding: 2% 10% 5% 10%;
}

.pricing_section .pricing_box {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.pricing_section .service_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}
 

.pricing_section .title_box {
    display: flex;
    justify-content: center;
}

.pricing_section h2 {
    width: fit-content;
    color: white;
    font-size: 2vw;
    text-align: center;
    border-radius: 2vw;
    padding: 1vw 2vw;
    background: var(--color1);
}

.pricing_section .list_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.pricing_section .pricing_item {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing_section .pricing_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: .2vw dotted var(--color1);
}

.pricing_section p {
    position: relative;
    color: var(--color2);
    font-size: 1.25vw;
    font-weight: 600;
    letter-spacing: .1vw;
    background: white;
    z-index: 1;
}

.pricing_section p span {
    color: var(--color1);
    font-size: .8vw;
}

@media (max-width: 996px) {
    .pricing_section {
        gap: 10vw;
        padding: 10%;
    }
    .pricing_section .pricing_box {
        gap: 15vw;
    }
    .pricing_section .title_box {
        display: flex;
        justify-content: center;
    }
    .pricing_section h2 {
        font-size: 5.5vw;
        border-radius: 5vw;
        padding: 2vw 5vw;
    }
    .pricing_section .pricing_item {
        width: 100%;
    }
    .pricing_section .pricing_item::before {
        border-bottom: .7vw dotted var(--color1);
    }
    .pricing_section p {
        font-size: 3.5vw;
    }
    .pricing_section p span {
        font-size: 2.7vw;
    }
}