/* Locations 01 Banner */

.locations01 .content span.with-bar::before {
    background-color: var(--blueLight) !important
}

.locations01 {
    padding: 3vw 6vw;
}

.locations01 .row {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/jpg/locations/locations00.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 6vw 0vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.locations01 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    color: #fff;
}

.locations01 .content span.with-bar {
    font-size: 1.2vw;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.locations01 .content span.with-bar::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.2vw;
    background-color: var(--blue);
}

.locations01 .content h1 {
    width: 70%;
    font-size: 3vw;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.locations01 .content p {
    font-size: 1.2vw;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}

.locations01 .content .buttons {
    margin-top: 1.5vw;
}

@media (max-width: 850px) {
    .locations01 {
        padding: 0 6vw;
    }

    .locations01 .row {
        padding: 15vw 6vw;
        border-radius: 15px;
    }

    .locations01 .content {
        gap: 3vw;
    }

    .locations01 .content span.with-bar {
        font-size: 3.5vw;
    }

    .locations01 .content span.with-bar::before {
        height: 3.5vw;
    }

    .locations01 .content h1 {
        width: 100%;
        font-size: 5vw;
    }

    .locations01 .content p {
        font-size: 4vw;
    }

    .locations01 .content .buttons {
        margin-top: 4vw;
    }
}


/* --- HERO --- */

.ins-hero {
    padding: 6vw 6vw 3vw 6vw;
    display: flex;
    justify-content: center;
}

.ins-hero__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2vw;
    max-width: 60%;
    text-align: center;
}

.ins-hero__box span {
    font-size: 1.2vw;
    color: var(--grey);
}

.ins-hero__box h1 {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
}

.ins-hero__box p {
    font-size: 1.2vw;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 996px) {
    .ins-hero {
        padding: 12vw 6vw 6vw 6vw;
    }

    .ins-hero__box {
        max-width: 100%;
        gap: 3vw;
    }

    .ins-hero__box span {
        font-size: 4vw;
    }

    .ins-hero__box h1 {
        font-size: 7vw;
    }

    .ins-hero__box p {
        font-size: 4vw;
    }
}


/* --- INSURANCE PLANS --- */

.ins-plans {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    padding: 0 6vw 6vw 6vw;
}

.ins-plans__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
}

.ins-plans__header h2 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
}

.ins-plans__header p {
    font-size: 1.2vw;
    color: var(--grey);
    max-width: 70%;
}

.ins-plans .cards_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.ins-plans .card_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5vw;
}

.ins-plans .card_item {
    height: 100%;
    border-radius: 16px;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    background-color: var(--blueLight2);
}

.ins-plans .card_item h3 {
    font-size: 1.05vw;
    font-weight: 700;
    color: var(--blue);
}

.ins-plans .card_item li {
    list-style: inside;
    font-size: 1vw;
    color: var(--grey);
}

.ins-plans .card_item ::marker {
    color: var(--blueLight);
}

.ins-plans .card_item p {
    color: var(--blue);
    font-size: .9vw;
    font-style: italic;
    opacity: .5;
}

@media (max-width: 996px) {
    .ins-plans {
        padding: 12vw 6vw;
    }

    .ins-plans__header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .ins-plans__header h2 {
        font-size: 6vw;
    }

    .ins-plans__header p {
        font-size: 4vw;
        max-width: 100%;
    }

    .ins-plans .cards_box {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .ins-plans .card_item {
        align-items: center;
        padding: 5vw;
        gap: 5vw;

    }

    .ins-plans .card_item h3 {
        font-size: 5vw;
        text-align: center;
    }

    .ins-plans .card_item li {
        font-size: 3.5vw;
        text-align: center;
    }

    .ins-plans .card_item p {
        font-size: 3vw;
        text-align: center;
    }
}


/* --- BILLING PROCESS --- */

.ins-billing {
    padding: 0 6vw 6vw 6vw;
}

.ins-billing__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
    margin-bottom: 3vw;
}

.ins-billing__header h2 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
    max-width: 70%;
}

.ins-billing__header p {
    font-size: 1.2vw;
    color: var(--grey);
    max-width: 60%;
}

.ins-billing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
}

.ins-billing__step {
    background-color: var(--blueLight2);
    border-radius: 16px;
    padding: 2vw;
    display: flex;
    gap: 1.5vw;
    align-items: flex-start;
}

.ins-billing__num {
    flex-shrink: 0;
    width: 2.8vw;
    height: 2.8vw;
    background: var(--blueLight);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85vw;
    font-weight: 700;
}

.ins-billing__step-content {
    display: flex;
    flex-direction: column;
    gap: 0.4vw;
}

.ins-billing__step-content h3 {
    font-size: 1.1vw;
    font-weight: 700;
    color: var(--blue);
}

.ins-billing__step-content p {
    font-size: 1vw;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 996px) {
    .ins-billing {
        padding: 0 6vw 12vw 6vw;
    }

    .ins-billing__header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .ins-billing__header h2 {
        font-size: 6vw;
        max-width: 100%;
    }

    .ins-billing__header p {
        font-size: 4vw;
        max-width: 100%;
    }

    .ins-billing__grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .ins-billing__step {
        padding: 5vw;
        gap: 4vw;
        border-radius: 12px;
    }

    .ins-billing__num {
        width: 9vw;
        height: 9vw;
        font-size: 3.5vw;
    }

    .ins-billing__step-content h3 {
        font-size: 4.5vw;
    }

    .ins-billing__step-content p {
        font-size: 3.5vw;
    }
}


/* --- CTA --- */

.ins-cta {
    padding: 0 6vw 6vw 6vw;
}

.ins-cta__box {
    background-color: var(--blueLight2);
    border-radius: 20px;
    padding: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vw;
    text-align: center;
}

.ins-cta__box h2 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
}

.ins-cta__box p {
    font-size: 1.2vw;
    color: var(--grey);
}

.ins-cta__buttons {
    display: flex;
    gap: 1.5vw;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5vw;
}

@media (max-width: 996px) {
    .ins-cta {
        padding: 0 6vw 12vw 6vw;
    }

    .ins-cta__box {
        padding: 8vw 5vw;
        gap: 4vw;
        border-radius: 15px;
    }

    .ins-cta__box h2 {
        font-size: 6vw;
    }

    .ins-cta__box p {
        font-size: 4vw;
    }

    .ins-cta__buttons {
        flex-direction: column;
        gap: 4vw;
        width: 100%;
        margin-top: 0;
    }

    .ins-cta__buttons .btn {
        font-size: 3vw;
        justify-content: center;
    }
}


/* --- FAQ --- */

.ins-faq {
    padding: 0 6vw 6vw 6vw;
}

.ins-faq__header {
    text-align: center;
    margin-bottom: 2vw;
}

.ins-faq__header h2 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
}

.ins-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    max-width: 80%;
    margin: 0 auto;
}

.ins-faq__item {
    background-color: var(--blueLight2);
    border-radius: 12px;
    overflow: hidden;
}

.ins-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4vw 1.8vw;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1vw;
}

.ins-faq__question span:first-child {
    font-size: 1.1vw;
    font-weight: 600;
    color: var(--blue);
}

.ins-faq__icon {
    font-size: 1.3vw;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
}

.ins-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.8vw;
}

.ins-faq__item.open .ins-faq__answer {
    max-height: 300px;
    padding: 0 1.8vw 1.4vw 1.8vw;
}

.ins-faq__answer p {
    font-size: 1.1vw;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 996px) {
    .ins-faq {
        padding: 0 6vw 12vw 6vw;
    }

    .ins-faq__header {
        margin-bottom: 6vw;
    }

    .ins-faq__header h2 {
        font-size: 6vw;
    }

    .ins-faq__list {
        max-width: 100%;
        gap: 3vw;
    }

    .ins-faq__question {
        padding: 4vw;
        gap: 3vw;
    }

    .ins-faq__question span:first-child {
        font-size: 4vw;
    }

    .ins-faq__icon {
        font-size: 4vw;
    }

    .ins-faq__item.open .ins-faq__answer {
        max-height: 400px;
        padding: 0 4vw 4vw 4vw;
    }

    .ins-faq__answer p {
        font-size: 4vw;
    }
}



/* ---TREATMENTS 07 STYLES--- */

.treatments07 {
    padding: 6vw;
}

.treatments07 .row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4vw;
    align-items: start;
}

.treatments07 .item1 {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.treatments07 .item1 h2 {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.treatments07 .item1 img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.treatments07 .item2 {
    display: flex;
    flex-direction: column;
    gap: .8vw;
}

.treatments07 .faq-item {
    background-color: var(--blueLight2);
    border-radius: 12px;
    overflow: hidden;
}

.treatments07 .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4vw 1.8vw;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1vw;
}

.treatments07 .faq-question span:first-child {
    font-size: 1.1vw;
    font-weight: 600;
    color: var(--blue);
}

.treatments07 .faq-icon {
    font-size: 1.3vw;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
}

.treatments07 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.8vw;
}

.treatments07 .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.8vw 1.4vw 1.8vw;
}

.treatments07 .faq-answer p {
    font-size: 1.1vw;

    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 996px) {
    .treatments07 {
        padding: 12vw 6vw;
    }

    .treatments07 .row {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    .treatments07 .item1 h2 {
        font-size: 6vw;
    }

    .treatments07 .item1 {
        gap: 4vw;
    }

    .treatments07 .item2 {
        gap: 3vw;
    }

    .treatments07 .faq-question {
        padding: 4vw;
        gap: 3vw;
    }

    .treatments07 .faq-question span:first-child {
        font-size: 4vw;
    }

    .treatments07 .faq-icon {
        font-size: 4vw;
    }

    .treatments07 .faq-item.open .faq-answer {
        padding: 0 4vw 4vw 4vw;
    }

    .treatments07 .faq-answer p {
        font-size: 4vw;
    }
}