/* ---MAIN STYLES--- */

.locations01 .content span.with-bar::before {
    background-color: #027df000;
}

.locations01 {
    padding: 3vw 6vw;
}

.locations01 .row {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 6vw 0vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flatbush .row {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/jpg/locations/flatbushbrooklynny/flatbushbrooklynny1.jpg');
}

.flushing .row {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/jpg/locations/flushingqueensny/flushingqueensny1.jpg');
}

.regopark .row {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/jpg/locations/regoparkqueensny/regoparkqueensny1.jpg');
}

.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: #027df000;
}

.locations01 .content h1 {
    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: 6vw 4vw;
    }

    .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 {
        font-size: 5vw;
    }

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

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



/* ---FAQ STYLES--- */

.faqs_section {
    padding: 0vw 6vw 3vw 6vw;
}

.faqs_section .faqs_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 2vw;
    border-radius: 1vw;
    background: var(--blueLight2);
}

.faqs_section h2 {
    color: var(--blue);
    font-size: 1.25vw;
}

.faqs_section .faq_item {
    display: flex;
    flex-direction: column;
    gap: .5vw
}

@media (max-width: 996px) {
    .faqs_section {
        padding: 0vw 4vw 6vw 4vw;
    }

    .faqs_section .faqs_box {
        gap: 5vw;
        padding: 5vw;
        border-radius: 3vw;
    }

    .faqs_section h2 {
        font-size: 4.5vw;
    }

    .faqs_section .faq_item {
        gap: 1.5vw
    }
}