@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #15244c;
}

body {
    font-family: "Lexend", serif;
    background-color: #e7f3ff56;
    color: #333;
}

a {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

/* Header Start */

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* padding-top: 1rem;
    padding-bottom: .5rem; */
    padding: 0;
}

.main-nav {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 20px;
    padding-left: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.btn-on {
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    border-radius: 0;
    padding: 0 25px;
    line-height: 35px;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: var(--main-color);
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-on:hover {
    color: #FFF;
}

.btn-off:hover {
    color: var(--main-color);
}

.btn-off {
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    border-radius: 0;
    padding: 0 25px;
    line-height: 35px;
    color: var(--main-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    /* background-color: var(--main-color); */
    border: 2px solid var(--main-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* .btn:hover {
    background-color: #2c2e33;
    color: #FFF;
} */

/* Header End */

/* Slider Start */

.slide {
    position: relative;
    z-index: 10;
    background-position: center;
    /* background-attachment: fixed; */
}

.slide::after {
    content: "";
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.gh-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    width: 1320px;
    max-width: 100%;
}

.gh-container .row {
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.relative {
    position: relative !important;
}

.justify-center {
    justify-content: center !important;
}

.slide.slide01 {
    background-image: url("../img/Quicklyz-Banner6.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;  /* takes full screen height */
    display: flex;
    align-items: center; /* vertical center */
}


.heading-title {
    /* margin-bottom: 45px; */
    text-align: center;
}

.slide .heading-title .title {
    color: #FFF;
    margin-bottom: 16px;
}

.heading-title h1 {
    font-size: 44px;
    line-height: 55px;
}

.heading-title p {
    color: #FFF;
    font-weight: 400;
    font-size: 18px;
    line-height: 25.2px;
}

.wg-filter .form-title {
    display: flex;
    align-items: center;
    background-color: #FFF;
    gap: 30px;
    padding: 8px 8px 8px 24px;
    border-radius: 16px;
}

.gh-dropdown-sort {
    padding-right: 30px;
    border-right: 1px solid #ececec;
}

.gh-dropdown-sort .btn-select {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.gh-dropdown-sort .text-sort-value {
    font-size: 18px;
    line-height: 22.5px;
    color: #2c2e33;
    font-weight: 600;
}

.gh-dropdown-sort .dropdown-menu {
    border: none;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
    padding: 20px 10px;
}

.slide.slide01 form {
    flex: 1;
}

form {
    position: relative;
    z-index: 30;
}

.slide.slide01 form fieldset input {
    border: none;
}

form .input.input-nl,
form textarea,
form input[type=text],
form input[type=search] {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    background-color: #FFF;
    border: 1px solid #5c5e61;
    border-radius: 16px;
    color: #5c5e61;
    overflow: hidden;
    height: 50px;
    margin-bottom: 0;
}

.wg-filter .form-title .wrap-btn {
    display: flex;
    gap: 8px;
}

.wg-filter .form-title .btn-filter {
    background-color: rgba(241, 145, 61, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 54px;
    border-radius: 16px;
    cursor: pointer;
}

.wg-filter .form-title .wrap-btn .gh-btn {
    height: 40px;
}

.gh-btn.bg-color-primary {
    background-color: var(--main-color);
}

.gh-btn.pd-3 {
    padding: 0 25px;
}

.gh-btn {
    font-size: 16px;
    /* line-height: 22.4px; */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 16px;
    color: #FFF;
    width: max-content;
    gap: 10px;
    white-space: nowrap;
    background-color: var(--main-color);
}

.gh-btn:hover {
    background-color: #2c2e33;
    color: #FFF;
}

/* Slider End */

/* Flat List Start */

.home-section {
    /* padding-top: 70px;
    padding-bottom: 70px; */
}

.home-recommended .box-title {
    margin-bottom: 32px;
}

.box-title {
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-size: 30px;
    line-height: 20px;
    font-weight: 500;
}

.home-tab-recommended .nav-tab-recommended {
    margin-bottom: 50px;
}

.nav-tab-item {
    margin-bottom: 20px;
    display: flex;
}

.nav-tab-recommended {
    display: flex;
    gap: 12px;
    overflow: auto;
}

.nav-tab-recommended .nav-link-item {
    font-size: 14px;
    font-weight: 600;
    background-color: #f7f7f7;
    border-radius: 9px;
    padding: 8px 24px;
    text-wrap: nowrap;
    transition: all ease 0.5s;
}

.nav-link-item.active,
.nav-link-item:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.nav-tab-item a {
    color: var(--main-color);
}

.tab-content {
    position: relative;
}

.home-recommended .homelengo-box {
    margin-bottom: 30px;
}

.homelengo-box {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    background-color: white;
}

.homelengo-box .images-group {
    position: relative;
    display: block;
}

.homelengo-box .images-style {
    position: relative;
    overflow: hidden;
}

.homelengo-box .images-style img {
    width: 100%;
}

.homelengo-box .images-group .bottom {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

.homelengo-box .images-group:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.05%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.homelengo-box .archive-bottom {
    padding: 20px;
}

.homelengo-box .content-top {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e4e4e4;
}

.homelengo-box .content-top .meta-list {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.homelengo-box .content-top .meta-list .item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.homelengo-box .content-top .meta-list .item .icon {
    font-size: 16px;
    color: #a3abb0;
}

.homelengo-box .archive-bottom .content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar.round {
    border-radius: 50%;
    overflow: hidden;
}

.avt-40 {
    width: 40px;
    min-width: 40px;
    height: 40px;
}

.gap-8 {
    gap: 8px;
}

.item .icon {
    font-size: 16px;
    color: #a3abb0;
}

.text-variant-1 {
    color: #5c6368;
}

.text-subtitle {
    color: var(--main-color);
}

.viewbtn-on {
    margin-top: 10px;
    border-radius: 5px;
    padding: 11px 26px;
    /* max-width: 244px; */
    background-color: var(--main-color);
    color: #FFF;
    border-color: var(--main-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.viewbtn-on i {
    font-size: 20px;
}

/* .viewbtn-on:hover {
    color: #FFF;
    background-color: #2c2e33;
} */

.viewbtn-off {
    margin-top: 10px;
    border-radius: 5px;
    padding: 11px 26px;
    /* max-width: 244px; */
    /* background-color: var(--main-color); */
    color: var(--main-color);
    border: 2px solid var(--main-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.viewbtn-off i {
    font-size: 20px;
}

/* .viewbtn-off:hover {
    color: var(--main-color);
    background-color: var(--main-color);
} */

/* Flat List End */

/*---------------
Property category css 
--------------------*/
.box-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #2c2e33;
    background-color: #fff;
    /* light reddish background */
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    box-shadow: 0 2px 8px rgb(222 229 241) !important;
}

.box-cat p {
    color: #6d7175;
    font-size: 14px;
}

.box-cat .icon {
    width: 70px;
    height: 70px;
    font-size: 60px;
    line-height: 70px;
    color: #b91c1c;
    /* dark red icon */
}

/*---------------
Data Count css 
--------------------*/
.data-count {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.data-bg {
    background-color: var(--main-color);
}

.count-num {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #fcff9e 0%, #c67700 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}


/*---------------
Footer css 
--------------------*/
.footer {
    background-color: #161e2d;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer .top-footer {
    padding: 50px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .top-footer .content-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer .wd-social {
    display: flex;
    align-items: center;
}

.footer .wd-social span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    margin-right: 16px;
}

.list-social {
    flex-wrap: wrap;
    gap: 12px;
}

.box-icon.social {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.box-icon.w-40 {
    width: 40px;
    height: 40px;
}

.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.box-icon.social i {
    font-size: 20px;
    color: #FFF;
    font-weight: 500;
}

.box-icon.social:hover {
    background-color: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

.footer .inner-footer {
    padding: 50px 0px 50px;
}

.footer-cl-1 {
    margin-right: 20.4%;
}

.text-variant-2 {
    color: #a3abb0;
}

.mt-12 {
    margin-top: 12px;
}

.gap-8 {
    gap: 8px;
}

.fs-20 {
    font-size: 20px;
}

.footer-cl-2 {
    margin-left: 15.4%;
}

.fw-7 {
    font-weight: 700 !important;
}

.mt-10 {
    margin-top: 10px;
}

.footer .inner-footer .navigation-menu-footer li {
    margin-top: 4px;
}

.caption-1 {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.navigation-menu-footer li a {
    position: relative;
}

.footer-cl-3 {
    margin-left: 20%;
}

.footer-cl-4 {
    margin-left: 17.3%;
}

#subscribe-form {
    position: relative;
    margin-top: 24px;
}

#subscribe-form input {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 12px 72px;
    border-color: transparent;
    border-radius: 999px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    color: #a3abb0;
    font-style: unset;
}

#subscribe-form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 0;
}

.button-subscribe i {
    font-size: 20px;
    color: #FFF;
}

.footer .content-footer-bottom {
    padding: 10px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .content-footer-bottom .copyright {
    color: #a3abb0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.footer .content-footer-bottom .menu-bottom {
    display: flex;
    align-items: center;
    gap: 19px;
}

.footer .content-footer-bottom .menu-bottom a {
    color: #a3abb0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}


.benefits-carousel .item {
    background: #becfeb80;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 80px;
}

.benefits-carousel .item:hover {
    transform: translateY(-5px);
}

.benefits-carousel img.icon {
    width: 50px;
    height: 50px;
}


.sidebar-filter {
    font-family: 'Poppins', sans-serif;
}

.filter-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.filter-header {
    font-size: 0.875rem;
    color: var(--main-color);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-header:hover {
    color: var(--main-color);
    /* subtle accent color */
}

.filter-options .btn {
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 20px;
    transition: all 0.3s;
}

.filter-options .btn:hover,
.filter-options .btn.active {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.filter-item img {
    max-height: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.filter-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.filter-item .small {
    font-size: 0.75rem;
    color: #555;
    margin-top: 4px;
}

.search-bar .form-control:focus {
    box-shadow: none;
}

.right-con .text-primary {
    color: var(--main-color) !important;
}

.right-con .card {
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    background-color: white;
}

.accordion-item {
    background-color: #f7fbff !important;
}

.like-btn {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    background-color: var(--main-color);
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.like-btn i {
    font-size: 15px;
    /* 1.25rem approx */
    line-height: 1;
    color: white;
    transition: color 0.3s ease, transform 0.2s ease;
}

.like-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.like-btn:hover i {
    transform: scale(1.2);
    color: #e74c3c;
    /* red on hover */
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #15244c;
    border-color: var(--main-color);
}
.page-link{
    color: var(--main-color);
}


