/* Hero */
.stre-head-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
}

.head-bx {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    padding: 1.6rem;
    border-radius: 1.1rem;
}

.head-bx h4 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #444;
    margin: 0;
}

.logo-loca {
    height: 2rem;
    margin: auto 0.7rem auto 0.7rem;
}

.img_ico {
    width: 5rem;
    margin: 1rem 1.5rem 1rem 1rem;
}




/* Accordion */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 0.8em 1.8em; 
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 1.8rem;
    margin: 0em;
    font-weight: bold;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; 
}

.prov_ico {
    width: 3rem;
    float: left;
}

.active {
    background-color: #ccc;
    border-radius: 1.5rem 1.5rem 0rem 0rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.accordion:hover {
    background-color: #ccc;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.accordion:after {
    content: "\276E";
    color: #444;
    font-weight: bold;
    font-size: 1.5rem;
    float: right;
    transform: rotate(-90deg);
}
 
.active:after {
    content: "\276E";
    transform: rotate(90deg);
}

.marbtm {margin-bottom: 0.8em;}
.marbtm2 {margin-bottom: 6em;}

.dropdn {
    padding: 0 1.5em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #eeeeee;
    border-radius: 0rem 0rem 1.5rem 1.5rem;
    border: none;
    font-size: 1.7rem;
    line-height: 3.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.dropdn a:hover {
    color: #da0000;
    text-shadow: 1px 1px #da0000;
}

.mar-btm {
    margin-bottom: 1em;
}

.mar-top {
    margin-top: 1em;
}

.img-footer-sty {
    height: auto;
    width: 100%;
}

.on2-head {
    font-size: 1.6rem;
    text-align: center;
    color: rgb(100, 100, 100);
}

/* Styles Mobile */
@media screen and (max-width: 768px) {
    .store_list_box {
        padding: 1.5rem 2rem 2rem 2rem;
        border-radius: 0rem 0rem 1.5rem 1.5rem;
    }
    .dropdn {
        font-size: 1.4rem;
        padding: 0 0.8em;
        line-height: 3.5rem;
    }
    .hero-image {
        height: 200px;
    }
    .accordion {
        font-size: 1.5rem;
    }
}


