/* Service Location Hero START */
.section-new-hero-so {
    width: 100%;
    position: relative;
    padding: 90px 50px;
    background-color: #F9F9F9;
    overflow: hidden;
}
.section-new-hero-so__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 520px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.section-new-hero-so__content {
    width: 100%;
}
.section-new-hero-so__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #979797;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.section-new-hero-so h1 {
    max-width: 540px;
    margin: 0;
    color: #282828;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.8px;
}
.section-new-hero-so p {
    max-width: 575px;
    margin: 24px 0 0;
    color: #454545;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}
.section-new-hero-so .glb-btns-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.section-new-hero-so .glb-btns-new .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    transition: 180ms ease;
}
.section-new-hero-so .glb-btns-new .btn-prim {
    border: 1px solid #F55822;
    background-color: #F55822;
    color: #fff;
}
.section-new-hero-so .glb-btns-new .btn-prim:hover {
    background-color: #df4617;
    border-color: #df4617;
    color: #fff;
}
.section-new-hero-so .glb-btns-new .btn-sec {
    border: 2px solid #F55822;
    background-color: #fff;
    color: #F55822;
}
.section-new-hero-so .glb-btns-new .btn-sec:hover {
    background-color: rgba(245, 88, 34, 0.08);
    color: #F55822;
}
.section-new-hero-so__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}
.section-new-hero-so__avatars {
    display: flex;
    align-items: center;
}
.section-new-hero-so__avatars img {
    width: 50px;
    height: 50px;
    display: block;
    margin-left: -17px;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f2f2f2;
}
.section-new-hero-so__avatars img:first-child {
    margin-left: 0;
}
.section-new-hero-so__trust-content p {
    margin: 0 0 6px;
    color: #171515;
    font-size: 13px;
    font-weight: 600;
    line-height: 100%;
}
.section-new-hero-so__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-new-hero-so__rating span {
    color: #FF8B40;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
}
.section-new-hero-so__rating small {
    color: #454545;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
}
.section-new-hero-so__media {
    width: 100%;
}
.section-new-hero-so__media img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}
/* Responsive */
@media (max-width: 1100px) {
    .section-new-hero-so {
        padding: 90px 30px;
    }

    .section-new-hero-so__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 430px);
        gap: 45px;
    }

    .section-new-hero-so h1 {
        font-size: 38px;
    }

    .section-new-hero-so__media img {
        max-width: 430px;
    }
}
@media (max-width: 900px) {
    .section-new-hero-so {
        padding: 80px 30px;
    }

    .section-new-hero-so__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .section-new-hero-so__content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .section-new-hero-so h1,
    .section-new-hero-so p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-new-hero-so .glb-btns-new,
    .section-new-hero-so__trust,
    .section-new-hero-so__rating {
        justify-content: center;
    }

    .section-new-hero-so__media {
        max-width: 520px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .section-new-hero-so {
        padding: 70px 20px;
    }

    .section-new-hero-so h1 {
        font-size: 32px;
    }

    .section-new-hero-so p {
        font-size: 13px;
    }

    .section-new-hero-so__media img {
        max-width: 430px;
    }
}
@media (max-width: 560px) {
    .section-new-hero-so {
        padding: 60px 16px;
    }

    .section-new-hero-so h1 {
        font-size: 28px;
    }

    .section-new-hero-so h1 br {
        display: none;
    }

    .section-new-hero-so .glb-btns-new {
        gap: 10px;
    }

    .section-new-hero-so .glb-btns-new .btn {
        width: 100%;
    }

    .section-new-hero-so__trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-new-hero-so__trust-content {
        text-align: center;
    }

    .section-new-hero-so__rating {
        flex-wrap: wrap;
    }

    .section-new-hero-so__media img {
        max-width: 100%;
    }
}
/* Service Location Hero END */


/* Service Overview State City START */
.section-new-state-city-so {
    width: 100%;
    padding: 85px 50px 112px;
    background-color: #fff;
    border-top: 1px solid rgba(202, 202, 202, 0.35);
}

.section-new-state-city-so__inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.section-new-state-city-so__head {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-new-state-city-so__head h2 {
    margin: 0;
    color: #282828;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.section-new-state-city-so__head p {
    margin: 10px auto 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.section-new-state-city-so__list {
    border-top: 1px solid rgba(245, 88, 34, 0.35);
}

.section-new-state-city-so__item {
    border-bottom: 1px solid transparent;
}

.section-new-state-city-so__toggle {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 20px 24px;
    padding-bottom: 15px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    text-align: left;
}

.section-new-state-city-so__state {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.section-new-state-city-so__state svg {
    flex-shrink: 0;
}

.section-new-state-city-so__state strong {
    color: #F55822;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.section-new-state-city-so__state small {
    color: #777;
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
}

.section-new-state-city-so__chevron {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    transition: 180ms ease;
}

.section-new-state-city-so__item.is-open .section-new-state-city-so__chevron {
    transform: rotate(180deg);
}

.section-new-state-city-so__panel {
    display: none;
    padding: 0 4px 30px;
}

.section-new-state-city-so__item.is-open .section-new-state-city-so__panel {
    display: block;
}

.section-new-state-city-so__cities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 34px;
}

.section-new-state-city-so__city {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 20px;
    border-radius: 7px;
    background-color: #FFF1E7;
    color: #454545;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: 180ms ease;
}

.section-new-state-city-so__city svg {
    flex: 0 0 auto;
}

.section-new-state-city-so__city:hover {
    background-color: rgba(245, 88, 34, 0.16);
    color: #F55822;
}

/* Responsive */
@media (max-width: 1100px) {
    .section-new-state-city-so {
        padding: 80px 30px 95px;
    }

    .section-new-state-city-so__cities {
        gap: 16px 22px;
    }
}

@media (max-width: 900px) {
    .section-new-state-city-so__cities {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section-new-state-city-so {
        padding: 70px 20px 85px;
    }

    .section-new-state-city-so__head {
        margin-bottom: 34px;
    }

    .section-new-state-city-so__head h2 {
        font-size: 28px;
    }

    .section-new-state-city-so__toggle {
        min-height: 86px;
        padding: 26px 0 20px;
    }

    .section-new-state-city-so__state strong {
        font-size: 16px;
    }

    .section-new-state-city-so__state small {
        font-size: 12px;
    }

    .section-new-state-city-so__panel {
        padding-bottom: 38px;
    }

    .section-new-state-city-so__cities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .section-new-state-city-so {
        padding: 60px 16px 75px;
    }

    .section-new-state-city-so__head h2 {
        font-size: 26px;
    }

    .section-new-state-city-so__toggle {
        gap: 14px;
    }

    .section-new-state-city-so__state {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .section-new-state-city-so__state strong {
        width: calc(100% - 32px);
    }

    .section-new-state-city-so__state small {
        margin-left: 29px;
    }

    .section-new-state-city-so__cities {
        grid-template-columns: 1fr;
    }

    .section-new-state-city-so__city {
        min-height: 48px;
    }
}
/* Service Overview State City END */

