::selection {
    background-color: #0f1b4d;
    color: #ffffff;
}

h1 {
    font-weight: 800;
    color: #0f1b4d;
}

nav {
    box-shadow: none !important;
    background-color: #ffffff;
}

.nav-link:hover {
    color: #0f1b4d;
}

.nav-link::before {
    content: '';
    display: block;
    height: 5px;
    background-color: #0f1b4d;
    position: absolute;
    top: 0;
    width: 0%;
    transition: all ease-in-out 250ms;
}

.nav-link:hover::before {
    width: 100%;
}

.custom-toggler {
    background-color: #0f1b4d !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.nav-item {
    margin: auto 20px;
}

.nav-link {
    color: #0f1b4d;
    font-weight: 400;
}

.btn-nav-sign-up {
    background-color: #0f1b4d;
    border-radius: 8px;
    padding: 0px 24px;
}

.bg-header {
    padding: 50px;
    margin-top: 120px;
}

.header-house-bg {
    background-image: url('/assets/img/house_search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80% 100%;
    height: 350px;
}

a {
    color: #0f1b4d;
}

.btn {
    background-color: #0f1b4d;
    color: #ffffff;
    border: 2px solid #0f1b4d;
    border-radius: 8px;
    transition: 500ms ease-in;
}

.btn:hover {
    background-color: #ffffff;
    color: #0f1b4d;
    border-radius: 8px;
    border: 2px solid #0f1b4d;
    transition: 500ms ease-out;
}

.card,
.view {
    border-radius: 28px !important;
}

.card .card-text {
    height: 85px;
}

.property .card .card-text {
    height: auto;
}

.property-show {
    background-color: #ffffff;
    z-index: 5;
}

figure a {
    padding: 10px 0 !important;
    text-align: center;
    font-weight: 500;
    color: #0f1b4d;
}

figure img {
    height: 250px !important;
    margin-bottom: 10px;
}


/* Footer Style */

footer {
    width: 100%;
    background-color: #0f1b4d;
    color: #ffffff;
}

footer p {
    color: #9ea0a9;
    font-weight: 400;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    margin: 5px 2px;
    padding: 5px 0;
    list-style: none;
}

footer ul li a {
    color: #9ea0a9;
    font-weight: 400;
    transition: 0.5s ease;
}

footer ul li a:hover {
    color: #ffffff;
}

footer .social-link a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #ffffff;
    border-radius: 100px;
    display: inline-block;
    /* background-color: #2e3138; */
    background-color: #0f1b4d;
    margin: 0 5px;
    transition: 0.5s ease;
}

footer .social-link a:nth-child(1) {
    margin-left: 0;
}

footer .social-link a:nth-child(1):hover {
    background-color: #3b5999;
}

footer .social-link a:nth-child(2):hover {
    background-color: #0077B5;
}

footer .social-link a:nth-child(3):hover {
    background-color: #55acee;
}

@media only screen and (max-width:1024px) {
    .nav-item {
        margin: auto 10px;
    }
    .card .btn {
        width: 100%;
        padding: 10px 0;
    }
}

@media only screen and (max-width:768px) {
    .card {
        width: 100%;
    }
    .card .card-body {
        padding: 10px 5px !important;
    }
    .card .btn {
        width: 80%;
        padding: 10px;
        margin: 20px 0px;
    }
}