/* body of whole the enveloped code, basically body of boilerplate layout */
body{ 
    background-color: #D3D3D2!important;
    font-family: 'League Spartan', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
}
.title {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 50px;
}

.container{
    flex:1;
}
/* HEADER */
.navbar{
    height:5rem;
}
.fa-compass{
    font-size: 2em;
    color: #01796F;
}
.nav-link{
    color:#222222 !important;
}

/* FOOTER */
.f_info{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #ebebeb;
}
.f_info_socials, .f_info_company, .f_info_links{
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.f_info_socials i{
    margin:auto .5rem;
    font-size: 1.2rem;
}
.f_info_links a{
    text-decoration: none;
    color: #222222;
}
.f_info_links a:hover{
    text-decoration: underline;
}

/* CARDS */
.card{
    padding-bottom: 1rem;
}
.card-img-top{
    height:18rem;
    border-radius: 8px;
}
.listing-card{
    margin:15px auto;
    border: none !important;
}
.listing_links{
    text-decoration: none;
}
.card-img-overlay{
    opacity:0;
}
.card-img-overlay:hover{
    opacity: 0.2;
    background-color: white;
}
.card-body{
    margin: 0;
    padding: 1rem !important;
}
.card-text p, .card-text{
    font-weight: 400;
}

/* NEW PAGE */
.form_btn{
    border: none;
    background-color: #fe424d;
}

/* EDIT PAGE */
.edit_btn{
    border: none;
    background-color: #00A86B;
}

/* SHOW PAGE */
.show_btns{
    display: flex;
    height: 2.5rem;
}
.dlt_btn{
    margin-left: 1rem;
}


/* MAP STYLING */
#map{
    /* position: absolute;  */
    height: 400px;
    width: 100vh;
}