/* Start custom CSS for html, class: .elementor-element-992f950 *//* =========================================================
   VIPIN SHARMA WEBSITE
   LOCATIONS PAGE
   Fixed Palette:
   #0A2947
   #F3E4C9
   #D3D4C0
   #8B5E3C
   ========================================================= */

.vs-locations {
    --navy: #0A2947;
    --cream: #F3E4C9;
    --grey: #D3D4C0;
    --brown: #8B5E3C;

    width: 100%;
    background: #fff;
    color: var(--navy);

    font-family: "DM Sans", Arial, sans-serif;
    overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.vs-locations-hero {
    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 25px;

    background:
        linear-gradient(
            rgba(10, 41, 71, .91),
            rgba(10, 41, 71, .91)
        ),
        linear-gradient(
            135deg,
            var(--brown),
            var(--navy)
        );
}

.vs-hero-content {
    max-width: 850px;
}

.vs-hero-content > span {
    display: block;

    margin-bottom: 20px;

    color: var(--cream);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.vs-hero-content h1 {
    margin: 0 0 20px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 8vw, 92px);
    font-weight: 400;

    line-height: 1;
}

.vs-hero-content p {
    max-width: 620px;
    margin: auto;

    color: rgba(255,255,255,.78);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
   ========================================================= */

.vs-location-intro {
    max-width: 850px;

    margin: auto;

    padding: 95px 25px 65px;

    text-align: center;
}

.vs-label {
    display: block;

    margin-bottom: 16px;

    color: var(--brown);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.vs-location-intro h2 {
    margin: 0 0 20px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;

    line-height: 1.15;
}

.vs-location-intro h2 em {
    color: var(--brown);
    font-style: normal;
}

.vs-location-intro p {
    max-width: 650px;

    margin: auto;

    color: #606870;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   MAIN LOCATION CONTAINER
   ========================================================= */

.vs-location-container {
    width: min(1180px, calc(100% - 50px));

    margin: auto;
}


/* =========================================================
   STATE
   ========================================================= */

.vs-state {
    margin-bottom: 35px;

    padding: 38px;

    background: var(--cream);

    border: 1px solid rgba(139,94,60,.16);

    transition: box-shadow .3s ease;
}

.vs-state:hover {
    box-shadow: 0 15px 40px rgba(10,41,71,.08);
}


/* =========================================================
   STATE TITLE
   ========================================================= */

.vs-state-title {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}

.vs-state-title > span {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: var(--cream);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vs-state-title h3 {
    margin: 0;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;

    line-height: 1.2;
}


/* =========================================================
   CITY GRID
   ========================================================= */

.vs-city-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


/* =========================================================
   CITY CARD
   ========================================================= */

.vs-city {
    position: relative;

    min-height: 105px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #fff;

    border: 1px solid rgba(10,41,71,.10);

    color: var(--navy);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.vs-city::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--brown);

    transition: width .3s ease;
}

.vs-city:hover {
    transform: translateY(-5px);

    border-color: var(--brown);

    box-shadow: 0 12px 28px rgba(10,41,71,.10);
}

.vs-city:hover::after {
    width: 100%;
}

.vs-city {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.vs-city small {
    display: block;

    margin-top: 9px;

    color: #777;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: color .3s ease;
}

.vs-city:hover small {
    color: var(--brown);
}


/* =========================================================
   BOTTOM SECTION
   ========================================================= */

.vs-location-bottom {
    margin-top: 65px;

    padding: 95px 25px;

    text-align: center;

    background: var(--navy);
}

.vs-location-bottom > span {
    color: var(--cream);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}

.vs-location-bottom h2 {
    margin: 18px 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
}

.vs-location-bottom p {
    max-width: 600px;

    margin: auto;

    color: rgba(255,255,255,.72);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .vs-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .vs-locations-hero {
        min-height: 350px;

        padding: 65px 20px;
    }

    .vs-hero-content > span {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .vs-hero-content p {
        font-size: 14px;
    }

    .vs-location-intro {
        padding: 70px 20px 50px;
    }

    .vs-location-intro h2 {
        font-size: 38px;
    }

    .vs-location-container {
        width: calc(100% - 30px);
    }

    .vs-state {
        padding: 25px 20px;
        margin-bottom: 22px;
    }

    .vs-state-title {
        gap: 14px;
        margin-bottom: 22px;
    }

    .vs-state-title > span {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .vs-state-title h3 {
        font-size: 27px;
    }

    .vs-city-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .vs-city {
        min-height: 90px;
        padding: 20px;
    }

    .vs-location-bottom {
        margin-top: 40px;
        padding: 75px 20px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .vs-state-title h3 {
        font-size: 23px;
    }

    .vs-location-intro h2 {
        font-size: 33px;
    }

}/* End custom CSS */