@charset "UTF-8";

/* Multi Location Selection CSS */



section.locSelect {
    position: relative;
    display: flex;
    background: linear-gradient(
    to bottom,
    rgba(230, 225, 215, 0.5) 0%,
    rgba(230, 225, 215, 0.5) 6.55%,

    #253D57 6.55%,
    #253D57 93.45%,

    #ffffff 93.45%,
    #ffffff 100%
  );
    height: min(31.823vw, 611px);
}

section.locSelect:after {
    position: absolute;
    content: '';
    top: 0;
    right: clamp(20px, 2.083vw, 40px);
    width: min(18.75vw, 360px);
    height: min(27.708vw, 532px);
    background-image: url('/wp-content/uploads/2026/01/johns_creek_ga.jpg');
    background-size: cover;
}

section.locSelect:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: clamp(20px, 2.083vw, 40px);
    width: min(18.75vw, 360px);
    height: min(27.708vw, 532px);
    background-image: url('/wp-content/uploads/2026/01/cumming_ga.jpg');
    background-size: cover;
}

section.locSelect .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.locSelect .basis-1 {
    position: relative;
    padding: clamp(20px, 2.083vw, 40px);
    width: min(50.625vw, 972px);
    border: 2px solid #567;
    overflow: visible;
}

section.locSelect .basis-1:before {
    content: '';
    position: absolute;
    top: max(-0.521vw, -10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(1.042vw, 20px);
    height: min(1.042vw, 20px);
    background: #C3B8A5;
    border-radius: 20px;
    outline: min(0.521vw, 10px) solid #253D57;
    z-index: 1;
}

section.locSelect .basis-1:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #567;
}

.locCard {
    padding: 0;
    display: flex;
    /* flex-grow: 1; */
    /* flex-shrink: 1; */
    justify-content: center;
    flex-direction: column;
}

.locCard:nth-of-type(1) {
    padding-right: clamp(20px, 2.083vw, 40px);
}

.locCard:nth-of-type(2) {
    padding-left: clamp(20px, 2.083vw, 40px);
}

.locImg {
    position: relative;
    display: block;
    z-index: 1;
}

.locContainer {
    padding: 0;
}

.locCardBlock {
    position: relative;
    display: flex;
    text-align: center;
    /* padding: 80px; */
    background-color: var( --dkBlue );
    color: var( --white );
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
    border-radius: 40px;
    z-index: 2;
    flex-direction: column;
    justify-content: space-around;
}

.locCardBlock .btn.btn-orange:hover {
    background-color: var( --white );
    color: var( --black );
}

.locCardBlock h4.locName {
    font-size: var( --h3-font-size );
    font-weight: var( --heading-font-weight );
    font-family: var(--heading-font);
    line-height: 125%;
    color: inherit;
    text-transform: uppercase;
    margin-bottom: clamp(24px, 1.667vw, 32px);
}

.locCardBlock span {
    display: flex;
    margin-bottom: 24px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.locCardBlock span.call {
    margin-bottom: 0;
}

.locCardBlock span.call a {
    color: inherit;
    font-size: clamp( 16px, 1.042vw, 20px );
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: var(--body-line-height);
}

.locCardBlock span.call a:hover {
    /* color: var( --primary-hover ); */
}

.locCardBlock span.address a {
    color: inherit;
    font-size: clamp( 16px, 1.042vw, 20px );
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: var(--body-line-height);
}

@media ( max-width: 1024px ) {

    section.locSelect {
        background: #253D57;
        height: unset;
        padding: 100px 0;
    }

    section.locSelect .basis-1:before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        background: #C3B8A5;
        border-radius: 20px;
        outline: 10px solid #253D57;
        z-index: 1;
    }

    section.locSelect .basis-1:after {
        width: 180px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #567;
    }

    .locSelect .locCard:nth-of-type(1) {
        padding-right: 0;
    }

    .locSelect .locCard {
        margin-bottom: 0;
        padding: 20px 0px;
    }

    .locSelect .locCard:nth-of-type(1) {
        padding-bottom: 40px;
    }

    .locSelect .locCard:nth-of-type(2) {
        padding-top: 40px;
    }

    .locCard:nth-of-type(2) {
        padding-left: 0;
    }

    section.locSelect:after,
    section.locSelect:before {
        display: none;
    }
    
    .locImg img {
        margin: 0 auto;
        display: block;
    }

    .locCard {
        margin-bottom: 50px;
    }

    .locRow::after {
        width: 95%;
    }
}

@media (max-width: 567px) {
    section.locSelect .basis-1 {
        width: 90%;
    }
}

@media (max-width: 375px) {
    section.locSelect .basis-1 {
        width: 92%;
    }

    section.locSelect .locCardBlock span {
        align-items: flex-start;
    }
}