body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fa-compass {
    color: rgb(255, 0, 0);
}

.navbar {
    height: 4rem;
}

.navbar-brand {
    font-size: 2rem;
}

.flash-mess {
    position: fixed;
    z-index: 2;
}

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

.f-info-links a:hover {
    text-decoration: underline;
}

.f-info-socials {
    font-size: 2rem;
}

.f-info-socials a {
    color: #222222;
}


#f-info {
    background-color: rgb(207, 207, 201);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}


.search-btn {
    background-color: red;
    color: white;
    border-radius: 1.5rem;
}

.search-btn:hover {
    background-color: darkred;
    color: white;
    cursor: pointer;
}

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

#searchBar1 {
    width: 37%;
}

#searchBar2 {
    display: none;
}

#searchBar1 form {
    width: 100%;
}

.search-inp {
    border-radius: 1.5rem;
    width: 75%;
}


@media (max-width: 767px) {
    .navbar-collapse {
        background-color: #f8f9fa;
        /* or your navbar color */
        padding: 1rem;
    }

    .search-inp {
        width: 70%;
    }

    #searchBar1 {
        display: none;
    }

    #searchBar2 {
        display: block;
    }
}

#offer2 {
    display: none;
}

@media(max-width: 830px) {
    .search-btn {
        width: 75px;
        font-size: 10px;
    }

    #offer1 {
        display: none;
    }

    #offer2 {
        display: block;
    }
}