body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container{
    flex: 1;
}
.navbar{
    height:5rem;
    background-color: white;
}

.fa-compass{
    font-size: 2.5rem;
    color: red;
}

.nav-link{
    color: black !important;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
}

/* footer */
/* .f-info{
    width: 100%;
    height:7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: aqua;
    flex-wrap: wrap;
} */

/* .f-info-socal-med {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    word-spacing: 0.5rem;
}

.f-info-socal-med i:hover{
    color: white;
    scale: 1.2;
}

.f-info-links{
    width: 100%;
    text-align: center;
}

.f-info-links a{
    text-decoration: none;
    color: black;
} */

/* card */
.listing-card{
    border: none;
    margin-bottom: 2rem;
}

.card-img-top{
    border-radius: 0.8rem;
    width: 100%;
    object-fit: cover;
}

.card-body{
    margin: 0;
    padding: 0;
}

.card-text {
    font-size: 1rem;
    font-weight: 300;
}

.listings-link{
    text-decoration: none;
}

.card-img-overlay{
    opacity: 0;
}

.card-img-overlay:hover{
    opacity: 0.25;
    background-color: white;
}

/* new listing page */

.listing-h{
    text-align: center;
    background-color: blanchedalmond;
    margin: 1rem 0 2rem 0;
}

/* .btn{
    background-color:red;
    margin-bottom: 1rem;
    border: none;
} */

.form-label{
    padding-left: 0.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.bg-secondary{
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 5px 5px transparent;
}

/* input type number arrow ko hatene ke liye */

.no-spinner::-webkit-inner-spin-button,
.no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



/* show listing page */


.show-editing{
    text-decoration: none;
    color: white;
}
/* filters ka styling */
.filters {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.filter {
    margin-left: 2rem;
    opacity: 0.8;
    text-align: center;
}

.filter:hover {
    opacity: 1;
    cursor: pointer;
}

.filter p {
    font-size: 0.8rem;
}

.textInfo {
    display: none;
}

.text-toggle {
    border: 1px solid black;
    height: 2.5rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-left: 10rem;
    display: flex;
    align-items: center;
}


/* nav bar search style */
.btn-search {
    background-color: red;
    color: white;
    border-radius: 2rem;
    border: none;

}

.btn-search:hover {
    background-color: red;
    color: white;
}

.btn-search i {
    display: inline;
    margin-right: 1rem;
}

.search-box{
    border-radius:2rem ;
}


/* index page designe to silder dotted line  */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
}

.carousel-indicators .active {
    background-color: black;
}