body {
    font-family: 'Roboto', sans-serif;
    border-right: 10px solid #0a65fe;
    border-left: 10px solid #0a65fe;
    border-bottom: 10px solid #0a65fe;
    letter-spacing: 1px;
    background: #ecf0f5;
}

header {
    background: #0a65fe;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.header-bottom-space {
    height: 78px;
}

/*.sticky-header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 9;*/
/*    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);*/
/*    animation-name: sticky_header_fadein;*/
/*    animation-duration: 0.5s;*/
/*    animation-iteration-count: 1;*/
/*}*/

@keyframes sticky_header_fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

.header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.header-menu-mobile {
    display: none;
}

.header-menu img {
    width: 27px;
}

.header-right-side {
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

#menu-sidebar-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}

#menu-sidebar-btn img {
    width: 7px;
    height: 27px;
    object-fit: contain;
}

#menu-sidebar {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    width: 350px;
    max-width: 100%;
    left: -400px;
    height: 100vh;
    overflow-y: auto;
    transition: ease-in-out 0.3s;
    padding: 50px 20px;
    z-index: 9;
}

#menu-sidebar::-webkit-scrollbar {
  width: 5px;
}

#menu-sidebar::-webkit-scrollbar-track {
  background: #f5f5f5; 
  border-radius: 5px;
}
 
#menu-sidebar::-webkit-scrollbar-thumb {
  background: #0a65fe; 
  border-radius: 5px;
}

#menu-sidebar.menu-sidebar-active {
    left: 0;
}

#menu-sidebar-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-size: 25px;
}

.sidebar-menu-ul {
    padding: 0;
    list-style-type: none;
}

.sidebar-menu-ul li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
}

.sidebar-menu-ul-a {
    color: white;
    background: #0a65fe;
    padding: 5px 20px;
    border-radius: 5px;
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
}

.sidebar-menu-ul .dropdown-toggle::after {
    border-top-width: 10px;
    border-right-width: 10px;
    border-left-width: 10px;
}

.sidebar-menu-ul .dropdown-menu.show {
    position: static !important;
    border: none;
    padding: 0 0 0 20px !important;
    margin: 0 !important;
    transform: translate(0px, 0px) !important;
}

.banner-heading {
    color: rgb(0, 0, 0);
    text-align: center;
    width: fit-content;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    border-bottom: 4px solid #0a65fe;
    margin: 10px auto 0px;
}

.banner-contact-link {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 5px;
    gap: 5px;
}

.banner-contact-link img {
    width: 22px;
    object-fit: contain;
}

.banner-contact-link a {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 700;
}

.welcome-msg {
    margin: 10px 0 0 0;
    text-align: center;
    color: #d8232a;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
}

.section-padding {
    padding: 10px 0;
}

.categories-div {
    padding: 5px;
    width: 25%;
}

.categories-div-50 {
    width: 50%;
}

.categories-inner-div {
    background: #fff;
    border: 4px solid #000;
    border-radius: 10px;
    height: 100%;
}

.categories-div-img {
    width: 100%;
    height: 205px;
    border-radius: 7px 7px 0 0;
    object-fit: cover;
    object-position: top;
}

.categories-content-div {
    height: calc(100% - 205px);
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories-inner-div-no-img .categories-content-div {
    height: 100%;
}

.categories-div-head {
    margin-bottom: 0;
    text-transform: capitalize;
    color: #000;
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.categories-content-div-inner {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.categories-div-number {
    background: #0a65fe;
    color: #fff;
    padding: 7px 25px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.categories-div-btn {
    background: #0a65fe;
    color: #fff;
    border: none !important;
    border-radius: 5px;
    max-width: 100%;
    font-size: 19px;
    font-weight: 700;
    padding: 7px 25px;
    margin-top: auto;
    text-align: center;
}

.modal .modal-header {
    background: #0a65fe;
    padding-left: 30px;
    padding-right: 30px;
}

.modal .modal-title {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    padding: 5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff;
    border-image: initial;
    margin: 0px auto;
}

.modal .btn-close {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    background-image: none;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 23px;
    height: auto;
    width: auto;
    box-shadow: none;
    z-index: 9;
    padding: 0px;
    margin: 0px;
    outline: none;
}

.form-label {
    color: #0a65fe;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 15px;
    display: block;
}

.form-label span {
    color: #000;
    font-size: 25px;
}

.form-control {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    box-shadow: none !important;
    border-radius: 20px;
    padding: 5px 10px;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #0a65fe !important;
    border-image: initial !important;
    outline: none !important;
    color: #000;
}

select.form-control {
    background-image: url("../images/arrow-down-sign-to-navigate.png");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 10px) 11px;
    padding-right: 33px;
}

textarea.form-control {
    height: 130px;
    resize: none;
}

.mobile-input {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
}

.form-submit-btn {
    background: #0a65fe;
    padding: 12px 25px;
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 10px;
    display: inline-block;
}

.radio-div {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.form-control-checkbox {
    color: #000;
    font-size: 19px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    line-height: 20px;
    cursor: pointer;
}

.form-control-checkbox input {
    width: 20px;
    height: 20px;
    outline: none;
}

.third-party-btn {
    display: block;
    color: #fff;
    background: #880025;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    width: fit-content;
    margin: 10px auto 0;
    text-align: center;
}

.total-pending-btn {
    background: #000;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.search-div {
    border: 4px solid #000;
    border-radius: 25px;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-search-btn {
    /* position: absolute; */
    top: 4px;
    right: 4px;
    background: #0a65fe;
    padding: 12px 25px;
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 10px;
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icons a {
    background: #000;
    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.property-total-btn {
    background: #0a65fe;
    padding: 12px 25px;
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    display: inline-block;
}

.azfilter {
    display: flex;
    align-items: center;
    background: #000;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    gap: 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    margin-right: 10px;
}

.azfilter i {
    font-size: 30px;
}

.filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.all-list-div {
    width: 33.33%;
    padding: 10px;
}

.all-list-div-inner {
    border: 5px solid #000;
    border-radius: 25px;
    padding: 10px;
    width: 100%;
}

.all-list-div-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a65fe;
    padding: 10px 20px;
    font-size: 20px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    border-radius: 25px;
    gap: 10px
}

a.all-list-div-head {
    justify-content: center;
}

.all-list-div-head-tel-btn {
    width: 50px;
    padding: 0;
    border: oldlace;
    outline: none;
}

.all-list-div-head-tel-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.all-list-div-black-bg-detail {
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 900;
    word-break: break-word;
}

.all-list-div-black-bg-detail-small {
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 900;
}

.all-list-div-msg {
    font-size: 20px;
    color: #000;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 8px;
    line-height: 25px;
    word-break: break-word;
}

.login-form-div {
    border: 4px solid #000;
    padding: 20px;
    border-radius: 25px;
}

.login-head {
    font-size: 37px;
    font-weight: 700;
    padding: 10px 35px;
    background: #0a65fe;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.passwordshowbtn {
    position: absolute;
    right: 10px;
    top: 11px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.password-div {
    position: relative;
}

.min-height-single-section {
    min-height: calc(100vh - 198px);
    display: flex;
    align-items: center;
}

.property-detail-div {
    border: 4px solid #000;
    border-radius: 25px;
    padding: 20px;
}

.property-detail-box {
    padding: 15px;
    border: 5px solid #0a65fe;
    margin-top: 10px;
    background: #fff;
}

.property-detail-box-head {
    font-size: 30px;
    line-height: 35px;
    color: #0a65fe;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
}

.property-detail-box-para {
    color: #000;
    font-size: 30px;
    line-height: 35px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 15px;
}

.share-btn {
    background: #0a65fe;
    border: none;
    outline: none;
    border-radius: 25px;
    color: #fff !important;
    font-weight: 600 !important;
    text-transform: capitalize;
    font-size: 15px !important;
    line-height: 18px;
    padding: 7px 11px;
}

.property-total-select-option {
    background: #000;
    color: #fff;
    border-radius: 33px;
    padding: 10px 45px 10px 20px;
    font-size: 27px;
    margin-top: 10px;
    outline: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/down-arrow.png");
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: calc(100% - 15px) 19px;
    width: 100%;
    max-width: 400px;
}

footer {
    background: #000;
    padding: 10px 0;
}

.footer-copyright {
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.footer-policy-links {
    text-align: center;
    color: #fff;
    font-size: 13px;
    line-height: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-policy-links a {
    color: #fff;
}

.footer-marque-section {
    background: #000;
}

.footer-marque-section marquee {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 30px;
}

.content-div {
    border: 4px solid #000;
    padding: 20px;
    border-radius: 25px;
    background-color: #fff;
}

.content-div p, .content-div ul {
    margin-top: 10px;
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.content-div h1 {
    margin-top: 10px;
    font-size: 30px;
    letter-spacing: 0;
    font-weight: 900;
    margin-bottom: 0;
}

.content-div h2, .content-div h3, .content-div h4 {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 25px;
    color: #000;
    letter-spacing: 0;
    font-weight: 600;
}

.searchres {
    position: absolute;
    background: #fff;
    z-index: 9;
    width: calc(100% - 30px);
    box-shadow: 0 0 5px 0 rgba(0 0 0 / 0.5);
    left: 15px;
    max-height: 150px;
    overflow-y: auto;
}

form .row .col-md-6, form .row .col-md-12 {
    position: relative;
}

.searchres a .name {
    padding: 8px 10px;
    color: #d8232a;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
}

.searchres a:not(:last-child) .name {
    border-bottom: 1px solid #d2d6de;
}

.slider-sec {
    margin-top: 10px;
}

.latest-post-slide {
    padding: 0 10px;
}

.latest-post-slide-inner {
    border: 5px solid #000;
    border-radius: 25px;
    padding: 10px;
    width: 100%;
    min-height: 480px;
}
 
.latest-post-slide-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a65fe;
    padding: 10px 20px;
    font-size: 20px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    border-radius: 25px;
    gap: 10px;
}

.latest-post-slide-head-tel-btn {
    width: 50px;
    padding: 0;
    border: oldlace;
    outline: none;
}

.latest-post-slide-head-tel-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.latest-post-slide-black-bg-detail {
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 900;
    word-break: break-word;
}

.latest-post-slide-red-bg-detail {
    background: #880025;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 900;
    word-break: break-word;
}

.latest-post-slide-msg {
    font-size: 20px;
    color: #000;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 8px;
    line-height: 25px;
    word-break: break-word;
}

.latest-post-slide-black-bg-detail-small {
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 900;
}

button.slick-arrow {
    height: 40px;
    width: 40px;
    background-color: transparent;
    font-size: 0;
    border: none;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

button.slick-arrow::before {
    display: none;
}

button.slick-prev.slick-arrow {
    background-image: url("../images/arrow-left.png") !important;
    left: -20px;
}

button.slick-next.slick-arrow {
    background-image: url("../images/arrow-right.png") !important;
    right: -20px;
}

.latest-post-latest-head {
    background: #880025;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 900;
    word-break: break-word;
    display: inline-block;
}

.buy-sale-new-heading {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    margin: 10px auto 0px;
}

.all-list-div-red-bg-detail {
    background: #880025;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 900;
    word-break: break-word;
}

.btn-center {
    margin: 0 auto;
    width: fit-content;
    display: block;
}

/*Responsive Start*/

@media (max-width: 991px) {

    .header-menu-desktop {
        display: none;
    }

    .header-menu-mobile {
        display: flex;
    }

    .header-right-side {
        width: 100%;
        justify-content: space-between;
    }

    .categories-div {
        width: 33.33%;
    }
    
    .all-list-div {
        width: 50%;
    }

}

@media (max-width: 767px) {

    .categories-div {
        width: 50%;
    }
    
    .all-list-div {
        width: 100%;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    #login-section .form-submit-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

}

@media (max-width: 479px) {

    .categories-div {
        padding: 3px;
    }

    .categories-div-img {
        height: 125px;
    }

    .categories-content-div {
        height: calc(100% - 125px);
    }

    .categories-div-head {
        font-size: 20px;
        line-height: 20px;
    }

    .third-party-btn {
        font-size: 20px;
        padding: 10px 10px;
    }

    .categories-div-btn {
        padding: 7px 20px;
    }

    .modal .btn-close {
        right: 5px;
    }

}