/* General Bounds */

*{
    margin: 0;
    border: none;
    /* width: 100vw; */
    overscroll-behavior: none;
    font-family: Inter;
    font-weight: medium;

}
.hide{
    display: none;
}

html, body {width: auto!important; overflow-x: hidden!important; overflow-y: scroll;} 

body{
    position: relative;
    background:white;
    top: 0;
    left: 0;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    overflow: hidden;
    }

@keyframes loading{
    0%{
        opacity: 0;
        transform: translateX(-20px);
    }
    100%{
        opacity: 100;
    }
    }

.padding{
    height: 150px;
}

a{
    color: #9F7EA8;
}

/* ################################################ */
/* Navigation */
/* ################################################ */

.wideNav {
    width: calc(100% - 440px);
    /* background: pink; */
    height: 3vw;
    min-height: 50px;
    max-height: 250px;
    display: flex;
    /* border-top: 3px solid #4D444F; */
    /* border-bottom: 3px solid #4D444F; */
    justify-content: flex-end;
    position: absolute;
    margin: 10px 0 2px 0px;
    bottom: 3px;
    right: 0;
}

.wideNav > div {
    width: 100%;
    /* max-width: 1100px;  */
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    /* background: red; */
}
.wideNav > div > div > a {
    /* background-color: rgb(134, 134, 213); */
    color: #2a1f7e;
    text-align: center;
    width: 85px;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 6px;
}
.wideNav > div > div:nth-child(4), .wideNav > div > div:nth-child(4) > a{
width: 102px;
}
.wideNav > div > div:last-child, .wideNav > div > div:last-child > a{
    /* background-color: rgb(134, 134, 213); */
    width: 99px;

}

/* DropDown Addition */

/* .wideNav{
    width: 100vw;
    background: #243043;
    border-bottom: 1px solid #472415;
    border-top: 1px solid #472415;
    border-bottom: 1px solid goldenrod;
    border-top: 1px solid goldenrod;
    height: 3vw;
    min-height: 65px;
    max-height: 250px;
    display: flex;
    justify-content: center;
    z-index: 100;

    
} */

/* .wideNav > div{
width: 100%;
max-width: 1100px;
height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
align-content: center;
}
*/.wideNav > div > div{
    /* background-color: rgb(134, 134, 213); */
    /* text-align: center;
    width: 125px;
    text-decoration: none;
    font-size: clamp(18px, 7vw, 24px); */
    width: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    position: relative;
    top: 5px;
    
    
} 
/* .wideNav > div > div > a{
    color: white;
    color: #243043;
    font-weight: bold;
    transition: .5s ease-in-out font-size;
} */
.wideNav > div > div > a:hover{
    /* color: white; */
    
    /* font-size: 30px; */
    
}
.openFlex{
    display:flex !important;
}
.subNav{
    margin-top: 12px;
    width: 200px;
    /* display: none; */
    display: flex;
    flex-direction: column;
    /* position: absolute; */
    background: #ffffff;
    color: #2a1f7e;
    height: fit-content;
    border-radius: 0 0 10px 10px;
    display: none;
    position: absolute;
    top: 22px;
}
.subNav > a{
    width: 200px;
    /* margin: 10px 0; */
    min-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #2a1f7e;
    /* text-align: left; */
    font-size: 18px;
}
.subNav > a:hover{
    background: rgba(0, 0, 0, .15);
    font-weight: bold;
    
}
.subNav > a:first-child{
    /* background: red; */
    margin-top: 5px;
}
.subNav > div > .topNav > .subNav{
    position: static;
}


.sideNav{
    position: fixed;
    width: 100vw;
    max-width: 350px;
    overflow-y: scroll;
    overflow-x:hidden;
    right: 0;
    top: 0;
    height: 100vh;
    /* display: flex; */
    background: #2a2179;
    border-left: 3px solid #233043;;
    z-index: 10;
    transform: translateX(350px);
    /* color: green !important; */
    font-weight: bold;
    box-shadow: inset 0px 0px 20px 0px #000000db;
    transition: .5s ease-in-out transform;

}

.sideNav > div{
    flex-direction: column;
    display: flex;
    /* padding-left: 20px; */
    justify-content: space-around;
}

.sideNav > div > .topNav {
    /* margin: 20px 0; */
    /* margin-left: 20px; */
    /* color: #233043; */
    color: white;
    padding: 20px 0 20px 20px;
    text-align: left;
    z-index: 10000;
    
}
.sideNav > div > .topNav:nth-child(even){
    background: rgba(255, 255, 255, 0.2);
}

.sideNavFix{
    transform: none;
}
.sideNav > div > .topNav > a{
    text-align: center;
    /* width: 125px; */
    text-decoration: none;
    font-size: clamp(18px, 7vw, 24px);
    width: 90%;
    color: white;
}
.sideNav > div > .topNav > .subNav {
    color: white;
    background: none;
    height: 0px;
    transform: scaleY(0);
    
}
.openSubNav{
    height: fit-content !important;
    transform: scaleY(1) !important;
    animation-name: subNavAnima;
    animation-duration: 1s;
    
}

.sideNav > div > .topNav > .subNav > a{
    justify-content: flex-start;
    margin-left: 10px;
    color:white;
    width: 240px;
    text-decoration: none;
}
.dropdownArrow{
    /* color: green; */
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    /* transform: rotate(-90deg) */
}
.ddTurn{
    transform: unset;
}

.sideNavButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    height: 60px;
    width: 60px;
    border-radius: 15px;
    border: 3px solid white;
    background: #2a2179;
    z-index: 101;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.sideNavButton>div {
    height: 40px;
    width: 40px;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.sideNavButton > img {
height: 40px;
width: 40px;
}


.closeOutButton {
    position: absolute !important;
}

.sideNavButton>div>span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 10px;
    transition: transform .35s ease-in-out, position .35s ease-in-out;
}


@keyframes subNavAnima{
    0%{
        height: 0px
    } 
    100%{
        height: fit-content;
    }
}

/* ################################################ */
/* HEADER CSS & CONFIG */
/* ################################################ */
header{height: 150px;width: 100vw;/* background: #472415; */position: relative;left:0;top: 0;justify-content: center;display: flex;}



/* ################################################ */
/* .head_config1{} */
/* ################################################ */
header > div{
    width: 100vw;
    height: auto;
    position: relative;
    max-width: 1100px;
    
}

.head_config1{
    position: absolute;
    width: 100%;
}

.head_config1 > img{
background: red;
height: 125px;
width: 125px;
position: absolute;
/* left: 12.5px; */
top: 12.5px;
}



/* ################################################ */
/* head_config2 */
/* ################################################ */

.head_config2{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.head_config2 > img {
    /* background: red; */
    height: 125px;
    width: 430px;
    position: absolute;
    left: 12.5px;
    top: 12.5px;
    /* display: none; */
}

.head_config2 > .business_title {
    /* bottom: 5px; */
    position: absolute;
    text-align: center;
    font-size: 36px;
    font-family: DM-Serif-Display;
    font-style: italic;
    font-weight: bold;
    color: #4D444F;
}

/* ################################################ */
/* Body CSS & Config */
/* ################################################ */
.mid_banner > h2{
    font-size: clamp(27px, 4vw, 40px);
}
.mid_banner > span{
        font-size: clamp(18px, 5vw, 22px);
        margin: 10px 0 0 0;
        display: block;
}

.body_height{
min-height: 500px;

width: calc(100vw - 40px);
max-width: 1100px;
padding: 20px 20px;

animation-name: loading;
animation-duration: .5s;
}

.body_height > article > p, .body_height > article > ul {
    margin: 20px 0;
    width: 100%;
    font-size: clamp(18px, 3vw, 21px);
    line-height: 1.5;
}

.body_height > article > ul > li {
    width: calc(100% - 25px);
    font-size: clamp(18px, 3vw, 21px);
    line-height: 1.5;
}

.body_height > article > h1, .body_height > article > h2, .body_height > article > h3, .body_height > article > h4, .body_height > article > h5{
    font-size: 40px;
    text-align: center;
    margin: 20px 0;
    color: #322F32;
    /* font-family: DM-Serif-Display; */
}
.body_height > article > h1{
    border-bottom: 3px solid #322F32;
    padding-bottom: 20px;
} 
 .body_height > article > h2, .body_height > article > h3, .body_height > article > h4, .body_height > article > h5{
    font-size: 30px;
    text-align: left;
    font-weight: bold;
    margin: 20px 0;
    color: #322F32;
    /* font-family: DM-Serif-Display; */
} 
/* ################################################ */
/* Content Image */
/* ################################################ */
.fRight{
    float: right;
    margin: 5px 0 20px 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.229);
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
}

.fLeft{
    float: left;
    margin: 5px 20px 20px 0;
    border-radius: 10px;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
}

.fLeft:has(img){
    float: left;
    margin: 5px 20px 20px 0;
    padding:5px 20px 20px 0; ;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
}
.fLeft:has(img) > img {
    max-width: 350px;
    max-height: 350px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.229);
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.229);
    object-fit: cover;

}

.subList{

}
.subSubList{

}
li::marker{
    margin-right: 30px;
}
/* ################################################ */
/* Full Image Banners */
/* ################################################ */
.full_banner {
    background-image: url();
    width: 100vw;
    background-color: #2a1f7e;
    height: 60vh;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/b/bc/Cervical_Collar_Emergency.jpg);
    background-size: cover;
    box-shadow: 0 4px 15px #2a1f7e;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    animation-name: bg_image;
    animation-duration: 18s;
    animation-iteration-count: infinite;
}

.full_banner > div {
    display: flex;
    justify-content: flex-start;
    height: 70%;
    width: 85%;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    background: #00000080;
    border-radius: 15px;
}
.full_banner > div > *{
    margin: 20px 0;
    color: #4D444F;
    text-decoration: none;
}
.full_banner > div > h2{
    font-size: clamp(35px, 5vw, 50px);
    font-family: DM-Serif-Display;
    /* text-shadow: -2px 4px 9px #FFE9E9; */
    text-shadow: #000 3px 3px 1px;
    color: white;
    margin-bottom: 0px;
}
.full_banner > div > span{
    font-size: clamp(25px, 3vw, 35px);
    color: white;
    text-shadow: #000 3px 3px 1px;
}
.full_banner > div > a > span {border: 4px solid #ffffff;padding: 5px 50px;border-radius: 10px;font-size: clamp(20px, 5vw, 30px);text-decoration: none;font-weight: 500;color: white;background: #2a1f7e;padding: 10px 50px;}
/* ################################################ */
/* FOOTER CSS & FOOTER CONFIG */
/* ################################################ */

footer{
    min-height: 150px;
    height: fit-content;
    width: 100vw;
    background: #2a2179;
    position: absolute;
    left:0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer > div {
    width: calc(100% - 40px);
    height: calc(100% - 10px);
    /* background: orange; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer > div > div > span, footer > div > div > div >span{
    display: block;
    margin: 10px;
}
footer > div > div {
    display: flex;
    flex-direction: column;
 }

 svg > *{
    fill: #fff;
    
 }
 svg.yelp > path:nth-child(1){
    fill: #9F7EA8
 }
 a > svg:hover{
    cursor: pointer;
 }


 .location_form {
    width: 100vw;
    justify-content: center;
    display: flex;
    align-items: center;
    min-height: 100px;
    align-content: center;
}
.location_form > div{
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.location_form > div > input {
    width: 50%;
    min-width: 200px;
    height: 50px;
    /* background: red; */
    padding: 0 10px;
    font-size: 20px;
    border: 1.5px solid black;
    border-radius: 5px;
}
 /* ##################################
 Mobile
 ################################## */

 @media screen and (max-width: 900px){
    .wideNav{
        display: none;
    }
    .sideNavButton{
        display: flex;
    }
    .padding{
        height: 270px;
    }
    .subNav {
        margin-top: 12px;
        width: 200px;
        /* display: none; */
        display: flex;
        text-align: left;
        flex-direction: column;
        /* position: absolute; */
        background: #504452;
        /* height: fit-content; */
        border-radius: 0 0 10px 10px;
        /* display: none; */
        position: static;
        top: 25px;
        color: white;
    
 }
 .subNav.openSubNav > a{
    text-align: left;
 }
}

 @media screen and (max-width: 500px){
     .fRight, .fLeft, .body_height > article > span, .body_height > article > span > img {
         max-width: unset;
         max-height: unset;
         width: 100%;
        }
        
        .full_banner{
            background-attachment: unset;
        }
     .location_form > div > input {
    width: calc(95% - 30px);
    }
        
    }
    @media screen and (max-width: 540px){
        header{
            height: 140px;
        }
        .head_config2 > img {
    /* background: red; */
    width: 90%;
            '
    position: absolute;
    ;;;;left: unset;;;;;
    top: 0px;
    ;;;;;;;;;padding-right: 7px;;;;;;;;;;/* display: none; */
}
        .head_config2 {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

    }

h2 {}

.small_banner_holder {
    height: 250px;
    background-image: url(attr());url(
    attr());url(
    attr()););
    width: 100vw;
    display: flex;
    align-items: center;
    background-position: left;
    background-size: cover;
    box-shadow: inset 0 0 20px #00000080;
    justify-content: center;
    /* background-image: url(https://images.unsplash.com/photo-1619468129361-605ebea04b44?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80); */
    align-content: center;
}

h2.location_header {
    margin-top: 25px;
}

article > div:has(ul) {
    display: flex;
    width: 100%;
    margin: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
}

article > div:has(ul) > ul > li {
    margin-bottom: 10px;
}

.small_banner_cont {.small_banner_cont {
    background: #0000005c;
    width: 95%;
    height: 90%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
};
.small_banner_cont {
    background: #0000005c;
    width: 95%;
    height: 90%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
};
}

.small_banner_cont {
    background: #0000005c;
    width: 95%;
    height: 90%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.small_banner_cont > h1 {
    color: white;
    letter-spacing: 0.3px;
    text-shadow: 0px 7px 9px black;
    font-size: 32px;
}

.form_button {
    border: solid 3px white;
    width: 60px;
    height: 60px;
    background: #2a2179;
    border-radius: 15px;
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    transition: height .5s ease-in-out, width .5s ease-in-out;
    animation-name: form_button;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.formButton_add {
    -webkit-animation-name: none;
    animation-name: none;
    color: #fff;
    height: 500px;
    width: 250px;
    display: flex;
    flex-direction: column;
}
.formButton_add > h2 {
    margin: 20px 0;
}

hr {
    line-height: 1.3px;
    display: block;
}

@media screen and (min-width: 900px){
    .form_button {
    
    bottom: 30px;
    
}
}


@keyframes bg_image {
    0%{
       background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/bc/Cervical_Collar_Emergency.jpg');
    }
    33%{
       background-image: url('https://images.pexels.com/photos/163016/crash-test-collision-60-km-h-distraction-163016.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') ; 
    }
    66%{
        background-image: url('https://i.imgur.com/1hrHQWY.png') 
    }
}